Uses of Interface
org.simpleframework.transport.Transport
Packages that use Transport
-
Uses of Transport in org.simpleframework.http.core
Methods in org.simpleframework.http.core with parameters of type Transport -
Uses of Transport in org.simpleframework.transport
Classes in org.simpleframework.transport that implement TransportModifier and TypeClassDescription(package private) class
TheSecureTransport
object provides an implementation of a transport used to send and receive data over SSL.class
TheSocketTransport
object offers a transport that can send and receive bytes in a non-blocking manner.Fields in org.simpleframework.transport declared as TransportModifier and TypeFieldDescriptionprivate final 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 final Transport
TransportChannel.transport
This represents the underlying transport that is to be used.private final 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 final Transport
TransportWriter.transport
This is the underlying transport to write the bytes to.Methods in org.simpleframework.transport with parameters of type TransportModifier and TypeMethodDescriptionvoid
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 TransportModifierConstructorDescriptionHandshake
(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, ByteBuffer input, ByteBuffer swap) Constructor for theSecureTransport
object.SecureTransport
(Transport transport, Certificate certificate, ByteBuffer input, 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.