Interface AgentPoolListener
-
- All Superinterfaces:
EventListener
- All Known Implementing Classes:
AgentPoolAdapter,EventTrackerImpl
public interface AgentPoolListener extends EventListener
- Author:
- Maxim.Manuylov Date: 7/22/11
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default voidagentPoolCreated(int agentPoolId)Called when agent pool is createdvoidagentPoolDeleted(int agentPoolId)Called when agent pool is deleteddefault voidagentPoolUpdated(int agentPoolId)Called when agent pool is updateddefault voidagentTypeMoved(AgentType agentType, AgentPool oldPool, AgentPool newPool)Called when agent type is moved to another pool
-
-
-
Method Detail
-
agentPoolCreated
default void agentPoolCreated(int agentPoolId)
Called when agent pool is created- Parameters:
agentPoolId-- Since:
- 2020.2
-
agentPoolUpdated
default void agentPoolUpdated(int agentPoolId)
Called when agent pool is updated- Since:
- 2020.2
-
agentPoolDeleted
void agentPoolDeleted(int agentPoolId)
Called when agent pool is deleted
-
-