public interface AgentPresenceListener
| Modifier and Type | Method and Description |
|---|---|
default void |
connecting(AgentInfo... agents)
Indicates that the list of agents represented by
agents is present on the
buses. |
default void |
connecting(AgentInfo agent)
Indicates that the agent represented by
agent is present on the
buses. |
default void |
disconnecting(AgentInfo agent)
Indicates that the agent represented by
agent has left the buses. |
default void connecting(AgentInfo agent)
agent is present on the
buses.
The implementation should return immediately : any blocking operations
should be scheduled on a separate thread.agent - default void connecting(AgentInfo... agents)
agents is present on the
buses.
This method is invoked when the listener is added with all the agents that
are already connected.
The implementation should return immediately : any blocking operations
should be scheduled on a separate thread.agents - default void disconnecting(AgentInfo agent)
agent has left the buses.
The implementation should return immediately : any blocking operations
should be scheduled on a separate thread.agent - Copyright © 2018 LSST. All rights reserved.