|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use InputSyncChannel | |
org.activeio | The core activeio API is centered around having Channels that move Packets of data. |
org.activeio.adapter | The Adapter package provides classes that make it easy ot bridge between the the SynchChannel, AsyncChannel, InputStream, OutputStream, Socket, and ServerSocket domains. |
org.activeio.filter | Some simple filters that may be added to your channels. |
org.activeio.net | A set of Channel implementations that are implemented using the Socket and DatagramSocket classes. |
Uses of InputSyncChannel in org.activeio |
Subinterfaces of InputSyncChannel in org.activeio | |
interface |
SyncChannel
SyncChannel objets allow threadd to synchronously block on the receiveUpPacket
method to get 'up' Packet objects when they arrive. |
Classes in org.activeio that implement InputSyncChannel | |
class |
FilterSyncChannel
A SynchChannelFilter can be used as a filter another org.activeio.SynchChannel
Most org.activeio.SynchChannel that are not directly accessing the network will
extends the SynchChannelFilter since they act as a filter between the client and the network. |
Uses of InputSyncChannel in org.activeio.adapter |
Classes in org.activeio.adapter that implement InputSyncChannel | |
class |
AsyncToSyncChannel
Adapts a AsyncChannel so that it provides an
org.activeio.SynchChannel interface. |
Uses of InputSyncChannel in org.activeio.filter |
Classes in org.activeio.filter that implement InputSyncChannel | |
class |
PacketAggregatingSyncChannel
This PacketAggregatingSynchChannel can be used when the client is sending a 'record' style packet down the channel stack and needs receiving end to receive the same 'record' packets. |
class |
PushbackSyncChannel
|
class |
SynchornizedSyncChannel
Used to synchronize concurrent access to a SynchChannel. |
class |
WriteBufferedSyncChannel
|
Uses of InputSyncChannel in org.activeio.net |
Classes in org.activeio.net that implement InputSyncChannel | |
class |
DatagramSocketSyncChannel
A org.activeio.SynchChannel implementation that uses
TCP to talk to the network. |
class |
NIOSyncChannel
A org.activeio.SynchChannel implementation that uses a SocketChannel
to talk to the network. |
class |
SocketSyncChannel
A org.activeio.SynchChannel implementation that uses a Socket
to talk to the network. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |