public interface AgentReceiver extends OsidReceiver
The agent receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Agent
objects. A change to a key is a change to an Agent.
| Modifier and Type | Method and Description |
|---|---|
void |
changedAgents(Id notificationId,
IdList agentIds)
The callback for notification of updated agents.
|
void |
deletedAgents(Id notificationId,
IdList agentIds)
the callback for notification of deleted agents.
|
void |
newAgents(Id notificationId,
IdList agentIds)
The callback for notifications of new agents.
|
down, upvoid newAgents(Id notificationId, IdList agentIds)
notificationId - the notification Id agentIds - the Id of the new Agents
mandatory - This method must be implemented. void changedAgents(Id notificationId, IdList agentIds)
notificationId - the notification Id agentIds - the Id of the updated Agents
mandatory - This method must be implemented.