| Package | Description |
|---|---|
| org.cojen.dirmi.core |
Session implementation classes.
|
| org.cojen.dirmi.io |
Input/Output implementation classes.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
InvocationChannel
Basic interface for a bidirectional method invocation I/O channel.
|
| Modifier and Type | Method and Description |
|---|---|
Channel |
ChannelAcceptor.accept()
Blocks until a channel is accepted.
|
Channel |
PipedChannelBroker.accept() |
Channel |
ChannelAcceptor.accept(long timeout,
TimeUnit unit)
Blocks until a channel is accepted.
|
Channel |
PipedChannelBroker.accept(long timeout,
TimeUnit unit) |
Channel |
ChannelAcceptor.accept(Timer timer)
Blocks until a channel is accepted.
|
Channel |
PipedChannelBroker.accept(Timer timer) |
Channel |
PipedChannelBroker.connect() |
Channel |
ChannelConnector.connect()
Returns a new channel, possibly blocking until it has been established.
|
Channel |
PipedChannelBroker.connect(long timeout,
TimeUnit unit) |
Channel |
ChannelConnector.connect(long timeout,
TimeUnit unit)
Returns a new channel, possibly blocking until it has been established.
|
Channel |
PipedChannelBroker.connect(Timer timer) |
Channel |
ChannelConnector.connect(Timer timer)
Returns a new channel, possibly blocking until it has been established.
|
| Modifier and Type | Method and Description |
|---|---|
void |
ChannelAcceptor.Listener.accepted(Channel channel)
Called as soon as a channel has been accepted.
|
void |
ChannelConnector.Listener.connected(Channel channel)
Called as soon as a channel has been connected.
|
void |
Channel.Recycler.recycled(Channel channel)
Called with a newly recycled channel, which does not yet have a
recycler installed.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Channel.register(CloseableGroup<? super Channel> group)
Register this channel with at least one group.
|
Copyright © 2006–2015 Cojen. All rights reserved.