Bug 55509 - Allow Plugins to be notified of remote thread number progression
Summary: Allow Plugins to be notified of remote thread number progression
Status: RESOLVED FIXED
Alias: None
Product: JMeter - Now in Github
Classification: Unclassified
Component: Main (show other bugs)
Version: 2.9
Hardware: All All
: P2 enhancement (vote)
Target Milestone: ---
Assignee: JMeter issues mailing list
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-08-30 21:30 UTC by Philippe Mouawad
Modified: 2013-08-30 21:41 UTC (History)
1 user (show)



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Philippe Mouawad 2013-08-30 21:30:44 UTC
Introduce this plugin interface:
public interface RemoteThreadsLifeCycleListener {

    /**
     * 
     * @param numberOfThreads number of active threads
     */
    void threadNumberIncreased(int numberOfThreads);

    /**
     * 
     * @param numberOfThreads number of active threads
     */
    void threadNumberDecreased(int numberOfThreads);
}
Comment 1 Philippe Mouawad 2013-08-30 21:41:31 UTC
Date: Fri Aug 30 21:40:50 2013
New Revision: 1519093

URL: http://svn.apache.org/r1519093
Log:
Bug 55509 - Allow Plugins to be notified of remote thread number progression
Bugzilla Id: 55509

Added:
    jmeter/trunk/src/core/org/apache/jmeter/threads/RemoteThreadsLifeCycleListener.java   (with props)
Modified:
    jmeter/trunk/src/core/org/apache/jmeter/threads/RemoteThreadsListenerImpl.java
    jmeter/trunk/xdocs/changes.xml
Comment 2 The ASF infrastructure team 2022-09-24 20:37:55 UTC
This issue has been migrated to GitHub: https://github.com/apache/jmeter/issues/3219