1 17 package org.apache.jmeter.monitor.model; 18 19 23 public class ThreadInfoImpl implements ThreadInfo 24 { 25 private int maxSpareThreads = 0; 26 private int minSpareThreads = 0; 27 private int maxThreads = 0; 28 private int currentThreadCount = 0; 29 private int currentThreadsBusy = 0; 30 31 34 public ThreadInfoImpl() 35 { 36 super(); 37 } 38 39 public int getMaxSpareThreads() 40 { 41 return this.maxSpareThreads; 42 } 43 44 public void setMaxSpareThreads(int value) 45 { 46 this.maxSpareThreads = value; 47 } 48 49 public int getMinSpareThreads() 50 { 51 return this.minSpareThreads; 52 } 53 54 public void setMinSpareThreads(int value) 55 { 56 this.minSpareThreads = value; 57 } 58 59 public int getMaxThreads() 60 { 61 return this.maxThreads; 62 } 63 64 public void setMaxThreads(int value) 65 { 66 this.maxThreads = value; 67 } 68 69 public int getCurrentThreadsBusy() 70 { 71 return this.currentThreadsBusy; 72 } 73 74 public void setCurrentThreadsBusy(int value) 75 { 76 this.currentThreadsBusy = value; 77 } 78 79 public int getCurrentThreadCount() 80 { 81 return this.currentThreadCount; 82 } 83 84 public void setCurrentThreadCount(int value) 85 { 86 this.currentThreadCount = value; 87 } 88 89 } 90 | Popular Tags |