Interface HazelcastClusterEventService
-
- All Known Implementing Classes:
HazelcastExecutorClusterEventService
public interface HazelcastClusterEventServiceHandles publishing of, and subscribing to, Hazelcast cluster-wide Confluence events.- Since:
- 5.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.hazelcast.core.IExecutorServicegetExecutorService()Returns the distributed executor service for the givenvoidpublishEventToCluster(Object event)voidstart()voidstop()
-
-
-
Method Detail
-
getExecutorService
com.hazelcast.core.IExecutorService getExecutorService()
Returns the distributed executor service for the givenNote: Note that it don't support invokeAll/Any and don't have standard shutdown behavior
See
HazelcastInstance.getExecutorService(String)for more details- Returns:
- executor service
-
publishEventToCluster
void publishEventToCluster(Object event)
-
start
void start()
-
stop
void stop()
-
-