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 voidContainerTransportProcessor. 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) classSecureTransportTheSecureTransportobject provides an implementation of a transport used to send and receive data over SSL.classSocketTransportTheSocketTransportobject 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 TransportHandshake. transportThis is the transport dispatched when the negotiation ends.private TransportSecureTransport. transportThis is the transport used to send data over the socket.private TransportTransportChannel. transportThis represents the underlying transport that is to be used.private TransportTransportDispatcher. transportThis is the transport to be passed to the processor.private TransportTransportReader. transportThis is the underlying transport to read the bytes from.private TransportTransportWriter. transportThis is the underlying transport to write the bytes to.Methods in org.simpleframework.transport with parameters of type Transport Modifier and Type Method Description voidTransportProcessor. process(Transport transport)This is used to process aTransportinstance 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 theHandshakeobject.Handshake(TransportProcessor processor, Transport transport, Reactor reactor, boolean client)Constructor for theHandshakeobject.Handshake(TransportProcessor processor, Transport transport, Reactor reactor, int size)Constructor for theHandshakeobject.Handshake(TransportProcessor processor, Transport transport, Reactor reactor, int size, boolean client)Constructor for theHandshakeobject.SecureTransport(Transport transport, Certificate certificate, java.nio.ByteBuffer input, java.nio.ByteBuffer swap)Constructor for theSecureTransportobject.SecureTransport(Transport transport, Certificate certificate, java.nio.ByteBuffer input, java.nio.ByteBuffer swap, int size)Constructor for theSecureTransportobject.TransportChannel(Transport transport)Constructor for theTransportChannelobject.TransportCursor(Transport transport)Constructor for theTransportCursorobject.TransportCursor(Transport transport, int size)Constructor for theTransportCursorobject.TransportDispatcher(TransportProcessor processor, Transport transport)Constructor for theTransportDispatcherobject.TransportReader(Transport transport)Constructor for theTransportReaderobject.TransportReader(Transport transport, int size)Constructor for theTransportReaderobject.TransportWriter(Transport transport)Constructor for theTransportWriterobject.
-