Name |
Description |
BaseTransport |
implements the common logic that is shared between (virtually) all concrete transports |
HttpClientTransport |
|
ProcTransport |
a transport to a newly created process. use one of the Connect() variants to spawn the server process and establish a connection to it. the server process is expected to operate in library mode, and is thus expected to die when the connection is closed. |
SocketTransport |
an implementation of a transport over sockets. example: SocketTransport t = new SocketTransport("localhost", 12345) |
SslSocketTransport |
an implementation of a transport over SSL sockets. example: SslSocketTransport t = new SslSocketTransport("localhost", 12345) in order to configure an SSL connection, create an SslStream and pass it to the constructor |
TransportException |
|
TransportStream |
an implementation of an input/output stream over a transport |
WrappedTransport |
implements a transport that wraps an underlying transport |