Search in sources :

Example 1 with ScheduledExecutorPartition

use of com.hazelcast.scheduledexecutor.impl.ScheduledExecutorPartition in project hazelcast by hazelcast.

the class ReplicationOperation method run.

@Override
public void run() throws Exception {
    DistributedScheduledExecutorService service = getService();
    ScheduledExecutorPartition partition = service.getPartition(getPartitionId());
    for (Map.Entry<String, Map<String, ScheduledTaskDescriptor>> entry : map.entrySet()) {
        ScheduledExecutorContainer container = partition.getOrCreateContainer(entry.getKey());
        for (Map.Entry<String, ScheduledTaskDescriptor> descriptorEntry : entry.getValue().entrySet()) {
            String taskName = descriptorEntry.getKey();
            ScheduledTaskDescriptor descriptor = descriptorEntry.getValue();
            if (!container.has(taskName)) {
                container.stash(descriptor);
            }
        }
    }
}
Also used : DistributedScheduledExecutorService(com.hazelcast.scheduledexecutor.impl.DistributedScheduledExecutorService) ScheduledTaskDescriptor(com.hazelcast.scheduledexecutor.impl.ScheduledTaskDescriptor) ScheduledExecutorContainer(com.hazelcast.scheduledexecutor.impl.ScheduledExecutorContainer) ScheduledExecutorPartition(com.hazelcast.scheduledexecutor.impl.ScheduledExecutorPartition) Map(java.util.Map) HashMap(java.util.HashMap)

Aggregations

DistributedScheduledExecutorService (com.hazelcast.scheduledexecutor.impl.DistributedScheduledExecutorService)1 ScheduledExecutorContainer (com.hazelcast.scheduledexecutor.impl.ScheduledExecutorContainer)1 ScheduledExecutorPartition (com.hazelcast.scheduledexecutor.impl.ScheduledExecutorPartition)1 ScheduledTaskDescriptor (com.hazelcast.scheduledexecutor.impl.ScheduledTaskDescriptor)1 HashMap (java.util.HashMap)1 Map (java.util.Map)1