Uses of Interface
org.simpleframework.transport.Transport
-
Packages that use Transport Package Description org.simpleframework.http.core org.simpleframework.transport -
-
Uses of Transport in org.simpleframework.http.core
Methods in org.simpleframework.http.core with parameters of type Transport Modifier and Type Method Description void
ContainerTransportProcessor. process(Transport transport)
This is used to consume HTTP messages that arrive on the given transport. -
Uses of Transport in org.simpleframework.transport
Classes in org.simpleframework.transport that implement Transport Modifier and Type Class Description (package private) class
SecureTransport
TheSecureTransport
object provides an implementation of a transport used to send and receive data over SSL.class
SocketTransport
TheSocketTransport
object offers a transport that can send and receive bytes in a non-blocking manner.Fields in org.simpleframework.transport declared as Transport Modifier and Type Field Description private Transport
Handshake. transport
This is the transport dispatched when the negotiation ends.private Transport
SecureTransport. transport
This is the transport used to send data over the socket.private Transport
TransportChannel. transport
This represents the underlying transport that is to be used.private Transport
TransportDispatcher. transport
This is the transport to be passed to the processor.private Transport
TransportReader. transport
This is the underlying transport to read the bytes from.private Transport
TransportWriter. transport
This is the underlying transport to write the bytes to.Methods in org.simpleframework.transport with parameters of type Transport Modifier and Type Method Description void
TransportProcessor. process(Transport transport)
This is used to process aTransport
instance in a higher layer that can handle a protocol.Constructors in org.simpleframework.transport with parameters of type Transport Constructor Description Handshake(TransportProcessor processor, Transport transport, Reactor reactor)
Constructor for theHandshake
object.Handshake(TransportProcessor processor, Transport transport, Reactor reactor, boolean client)
Constructor for theHandshake
object.Handshake(TransportProcessor processor, Transport transport, Reactor reactor, int size)
Constructor for theHandshake
object.Handshake(TransportProcessor processor, Transport transport, Reactor reactor, int size, boolean client)
Constructor for theHandshake
object.SecureTransport(Transport transport, Certificate certificate, java.nio.ByteBuffer input, java.nio.ByteBuffer swap)
Constructor for theSecureTransport
object.SecureTransport(Transport transport, Certificate certificate, java.nio.ByteBuffer input, java.nio.ByteBuffer swap, int size)
Constructor for theSecureTransport
object.TransportChannel(Transport transport)
Constructor for theTransportChannel
object.TransportCursor(Transport transport)
Constructor for theTransportCursor
object.TransportCursor(Transport transport, int size)
Constructor for theTransportCursor
object.TransportDispatcher(TransportProcessor processor, Transport transport)
Constructor for theTransportDispatcher
object.TransportReader(Transport transport)
Constructor for theTransportReader
object.TransportReader(Transport transport, int size)
Constructor for theTransportReader
object.TransportWriter(Transport transport)
Constructor for theTransportWriter
object.
-