Package | Description |
---|---|
com.hazelcast.nio.tcp |
Contains functionality for the TCP/IP Networking between cluster members
This whole package is internal and no compatibility will be provided. |
com.hazelcast.spi.impl.eventservice |
Contains the code for the
InternalEventService . |
com.hazelcast.spi.impl.eventservice.impl |
Contains the code for the
InternalEventService implementation. |
com.hazelcast.spi.impl.operationexecutor |
Contains the
OperationRunner code. |
com.hazelcast.spi.impl.operationexecutor.impl |
Contains the
OperationExecutorImpl code. |
com.hazelcast.spi.impl.operationservice.impl |
Contains the code for the
InternalOperationService implementation. |
com.hazelcast.spi.impl.packetdispatcher.impl |
Contains the implementation of the
PacketDispatcher . |
Modifier and Type | Class and Description |
---|---|
class |
TcpIpConnectionManager |
Modifier and Type | Interface and Description |
---|---|
interface |
InternalEventService
The InternalEventService is an
EventService interface that adds additional capabilities
we don't want to expose to the end user. |
Modifier and Type | Class and Description |
---|---|
class |
EventServiceImpl |
Modifier and Type | Interface and Description |
---|---|
interface |
OperationExecutor
The OperationExecutor is responsible for scheduling work (packets/operations) to be executed.
|
Modifier and Type | Class and Description |
---|---|
class |
OperationExecutorImpl
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 OperationExecutorImpl.execute(Object, int, boolean) accepts an Object instead of a runnable to prevent needing to
create wrapper runnables around tasks. |
Modifier and Type | Class and Description |
---|---|
class |
AsyncResponseHandler
The AsyncResponsePacketHandler is a PacketHandler that asynchronously process operation-response packets.
|
class |
ResponseHandler
Responsible for handling responses for invocations.
|
Modifier and Type | Method and Description |
---|---|
PacketHandler |
OperationServiceImpl.getAsyncResponseHandler() |
Constructor and Description |
---|
PacketDispatcherImpl(ILogger logger,
PacketHandler operationExecutor,
PacketHandler responseHandler,
PacketHandler invocationMonitor,
PacketHandler eventService,
PacketHandler connectionManager) |
Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.