|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use SyncChannelServer | |
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.net | A set of Channel implementations that are implemented using the Socket and DatagramSocket classes. |
Uses of SyncChannelServer in org.activeio |
Classes in org.activeio that implement SyncChannelServer | |
class |
FilterSyncChannelServer
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. |
Methods in org.activeio that return SyncChannelServer | |
SyncChannelServer |
ChannelFactory.bindSyncChannel(URI location)
|
SyncChannelServer |
SyncChannelFactory.bindSyncChannel(URI location)
Binds a server at the URI location. |
SyncChannelServer |
FilterSyncChannelServer.getNext()
|
Constructors in org.activeio with parameters of type SyncChannelServer | |
FilterSyncChannelServer(SyncChannelServer next)
|
Uses of SyncChannelServer in org.activeio.adapter |
Classes in org.activeio.adapter that implement SyncChannelServer | |
class |
AsyncToSyncChannelServer
Adapts a AsyncChannelServer so that it provides an
org.activeio.SynchChannelServer interface. |
Methods in org.activeio.adapter that return SyncChannelServer | |
SyncChannelServer |
AsyncToSyncChannelFactory.bindSyncChannel(URI location)
|
static SyncChannelServer |
AsyncToSyncChannelServer.adapt(ChannelServer channel)
|
static SyncChannelServer |
AsyncToSyncChannelServer.adapt(ChannelServer channel,
Channel upPacketChannel)
|
SyncChannelServer |
SyncToAsyncChannelServer.getSynchChannelServer()
|
Constructors in org.activeio.adapter with parameters of type SyncChannelServer | |
SyncChannelServerToServerSocket(SyncChannelServer channelServer)
|
|
SyncToAsyncChannelServer(SyncChannelServer syncServer)
|
|
SyncToAsyncChannelServer(SyncChannelServer syncServer,
Executor executor)
|
Uses of SyncChannelServer in org.activeio.net |
Classes in org.activeio.net that implement SyncChannelServer | |
class |
NIOAsyncChannelServer
A SynchChannelServer that creates org.activeio.net.TcpSynchChannel objects from accepted
tcp socket connections. |
class |
NIOSyncChannelServer
A SynchChannelServer that creates org.activeio.net.TcpSynchChannel objects from accepted
tcp socket connections. |
class |
SocketSyncChannelServer
A SynchChannelServer that creates org.activeio.net.TcpSynchChannel objects from accepted
TCP socket connections. |
Methods in org.activeio.net that return SyncChannelServer | |
SyncChannelServer |
DatagramSocketSyncChannelFactory.bindSyncChannel(URI location)
|
SyncChannelServer |
SocketSyncChannelFactory.bindSyncChannel(URI bindURI)
Binds a server socket a the 's port. |
SyncChannelServer |
NIOSyncChannelFactory.bindSyncChannel(URI bindURI)
Binds a server socket a the 's port. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |