Package jetbrains.buildServer.agent
Interface ServerCommandsHandlersRegistry
-
- All Known Implementing Classes:
PollingBasedServerCommandsHandlersRegistry
,ServerCommandsHandlersRegistryImpl
public interface ServerCommandsHandlersRegistry
Agent-side part of the extension point that allows to send custom commands from Server to Agent.- Since:
- 9.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
registerCommandsHandler(String handlerName, Object handler)
Allows to registers custom handler for the server-sent commands.
-
-
-
Method Detail
-
registerCommandsHandler
void registerCommandsHandler(String handlerName, Object handler)
Allows to registers custom handler for the server-sent commands. Registered handler should contain simple methods that will be called remotely. (TODO describe what does it mean - simple methods)- See Also:
(TODO add it to open api on server side)
-
-