Interface HazelcastClusterEventService
-
- All Known Implementing Classes:
HazelcastExecutorClusterEventService
public interface HazelcastClusterEventService
Handles 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.IExecutorService
getExecutorService()
Returns the distributed executor service for the givenvoid
publishEventToCluster(Object event)
void
start()
void
stop()
-
-
-
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()
-
-