Jmeter – Counter Config Element With Example

Apache JMeter has many different configuration elements and counter is one of the configuration element of JMeter. Counter config element allows you to set a counter and then you can use it’s reference anywhere in your thread group of your software load test plan. Let’s understand how to add and configure counter in your software load test … Read more

Java TreeSet Class

TreeSet is class under Set interface of collection framework. It implements NavigableSet interface which extends SortedSet interface. Elements are ordered by a Comparator which is provided at set creation time or by natural ordering. It maintains the ascending sorting order. TreeSet is not synchronized so if multiple threads accessing it concurrently and any one modifies set entry then … Read more