Package com.mongodb.event
Class ClusterEventMulticaster
- java.lang.Object
-
- com.mongodb.event.ClusterEventMulticaster
-
- All Implemented Interfaces:
ClusterListener
,EventListener
@Deprecated @Immutable public final class ClusterEventMulticaster extends Object implements ClusterListener
Deprecated.register multiple cluster listeners insteadA multicaster for cluster events.- Since:
- 3.3
-
-
Constructor Summary
Constructors Constructor Description ClusterEventMulticaster(List<ClusterListener> clusterListeners)
Deprecated.Construct an instance with the given list of cluster listeners
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
clusterClosed(ClusterClosedEvent event)
Deprecated.Invoked when a cluster is closed.void
clusterDescriptionChanged(ClusterDescriptionChangedEvent event)
Deprecated.Invoked when a cluster description changes.void
clusterOpening(ClusterOpeningEvent event)
Deprecated.Invoked when a cluster is opened.List<ClusterListener>
getClusterListeners()
Deprecated.Gets the cluster listeners.
-
-
-
Constructor Detail
-
ClusterEventMulticaster
public ClusterEventMulticaster(List<ClusterListener> clusterListeners)
Deprecated.Construct an instance with the given list of cluster listeners- Parameters:
clusterListeners
- the non-null list of cluster listeners, none of which may be null
-
-
Method Detail
-
getClusterListeners
public List<ClusterListener> getClusterListeners()
Deprecated.Gets the cluster listeners.- Returns:
- the cluster listeners
-
clusterOpening
public void clusterOpening(ClusterOpeningEvent event)
Deprecated.Description copied from interface:ClusterListener
Invoked when a cluster is opened.- Specified by:
clusterOpening
in interfaceClusterListener
- Parameters:
event
- the event
-
clusterClosed
public void clusterClosed(ClusterClosedEvent event)
Deprecated.Description copied from interface:ClusterListener
Invoked when a cluster is closed.- Specified by:
clusterClosed
in interfaceClusterListener
- Parameters:
event
- the event
-
clusterDescriptionChanged
public void clusterDescriptionChanged(ClusterDescriptionChangedEvent event)
Deprecated.Description copied from interface:ClusterListener
Invoked when a cluster description changes.- Specified by:
clusterDescriptionChanged
in interfaceClusterListener
- Parameters:
event
- the event
-
-