use of com.hazelcast.wan.WanReplicationPublisher in project hazelcast by hazelcast.
the class MapEventPublisherImpl method publishWanReplicationEventInternal.
protected void publishWanReplicationEventInternal(String mapName, ReplicationEventObject event) {
MapContainer mapContainer = mapServiceContext.getMapContainer(mapName);
WanReplicationPublisher wanReplicationPublisher = mapContainer.getWanReplicationPublisher();
wanReplicationPublisher.publishReplicationEvent(SERVICE_NAME, event);
}
Aggregations