Class AgentPoolAdapter
- java.lang.Object
-
- jetbrains.buildServer.serverSide.agentPools.AgentPoolAdapter
-
- All Implemented Interfaces:
EventListener,AgentPoolListener
public abstract class AgentPoolAdapter extends Object implements AgentPoolListener
- Author:
- Maxim.Manuylov Date: 8/9/11
-
-
Constructor Summary
Constructors Constructor Description AgentPoolAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidagentPoolDeleted(int agentPoolId)Called when agent pool is deletedvoidagentTypeMoved(AgentType agentType, AgentPool oldPool, AgentPool newPool)Called when agent type is moved to another pool-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface jetbrains.buildServer.serverSide.agentPools.AgentPoolListener
agentPoolCreated, agentPoolUpdated
-
-
-
-
Method Detail
-
agentPoolDeleted
public void agentPoolDeleted(int agentPoolId)
Description copied from interface:AgentPoolListenerCalled when agent pool is deleted- Specified by:
agentPoolDeletedin interfaceAgentPoolListener
-
agentTypeMoved
public void agentTypeMoved(AgentType agentType, AgentPool oldPool, AgentPool newPool)
Description copied from interface:AgentPoolListenerCalled when agent type is moved to another pool- Specified by:
agentTypeMovedin interfaceAgentPoolListener- Parameters:
agentType- agent type that was movedoldPool- old poolnewPool- new pool
-
-