| Package | Description |
|---|---|
| groovyx.gpars.actor.remote | |
| groovyx.gpars.agent.remote | |
| groovyx.gpars.dataflow.remote | |
| groovyx.gpars.remote |
This package holds classes implementing the remoting interface for actors, dataflows and agents.
|
| groovyx.gpars.remote.netty |
This package holds implementation-specific classes implementing the remote actors functionality on top of Netty.
|
| Modifier and Type | Class and Description |
|---|---|
class |
RemoteActors
Remoting context for Actors.
|
| Modifier and Type | Class and Description |
|---|---|
class |
RemoteAgents
Remoting context for Agents.
|
| Modifier and Type | Class and Description |
|---|---|
class |
RemoteDataflows
Remoting context for Dataflows.
|
| Modifier and Type | Field and Description |
|---|---|
private LocalHost |
RemoteConnection.localHost |
| Modifier and Type | Method and Description |
|---|---|
LocalHost |
RemoteConnection.getLocalHost() |
LocalHost |
RemoteHost.getLocalHost() |
| Constructor and Description |
|---|
RemoteConnection(LocalHost localHost) |
RemoteHost(LocalHost localHost,
java.util.UUID hostId) |
| Modifier and Type | Field and Description |
|---|---|
protected LocalHost |
NettyChannelInitializer.localHost |
| Modifier and Type | Method and Description |
|---|---|
static NettyClient |
NettyTransportProvider.createClient(java.lang.String host,
int port,
LocalHost localHost,
ConnectListener listener)
Factory method for creating client instances.
|
static NettyServer |
NettyTransportProvider.createServer(java.lang.String host,
int port,
LocalHost localHost)
Factory method for creating server instances.
|
| Constructor and Description |
|---|
NettyChannelInitializer(LocalHost localHost,
ConnectListener connectListener) |
NettyClient(LocalHost localHost,
java.lang.String host,
int port,
ConnectListener connectListener)
Creates client that connect to server on specified host and port.
|
NettyRemoteConnection(LocalHost provider,
io.netty.channel.Channel channel,
ConnectListener connectListener) |
NettyServer(LocalHost localHost,
java.lang.String address,
int port,
ConnectListener connectListener)
Creates a server listening on specified address.
|