Package com.mongodb.event
Interface CommandListener
-
- All Known Implementing Classes:
CommandEventMulticaster
,CommandListenerMulticaster
@Deprecated(since="2021-05-27") public interface CommandListener
Deprecated.Usage of this API is not supported in AEM as a Cloud Service.A listener for command events- Since:
- 3.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
commandFailed(CommandFailedEvent event)
Deprecated.Listener for command failure eventsvoid
commandStarted(CommandStartedEvent event)
Deprecated.Listener for command started events.void
commandSucceeded(CommandSucceededEvent event)
Deprecated.Listener for command completed events
-
-
-
Method Detail
-
commandStarted
void commandStarted(CommandStartedEvent event)
Deprecated.Listener for command started events.- Parameters:
event
- the event
-
commandSucceeded
void commandSucceeded(CommandSucceededEvent event)
Deprecated.Listener for command completed events- Parameters:
event
- the event
-
commandFailed
void commandFailed(CommandFailedEvent event)
Deprecated.Listener for command failure events- Parameters:
event
- the event
-
-