ClassicOperationExecutor
code.See: Description
Interface | Description |
---|---|
ScheduleQueue |
The ScheduleQueue is a kind of priority queue where 'tasks' are queued for scheduling.
|
Class | Description |
---|---|
ClassicOperationExecutor |
A
OperationExecutor that schedules:
partition specific operations to a specific partition-operation-thread (using a mod on the partition-id)
non specific operations to generic-operation-threads
The ClassicOperationExecutor.execute(Object, int, boolean) accepts an Object instead of a runnable to prevent needing to
create wrapper runnables around tasks. |
DefaultScheduleQueue | |
GenericOperationThread |
An
OperationThread for non partition specific operations. |
OperationThread |
The OperationThread is responsible for processing operations, packets containing operations and runnable's.
|
PartitionOperationThread |
An
OperationThread that executes Operations for a particular partition, e.g. |
ClassicOperationExecutor
code.Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.