Uses of Interface
org.simpleframework.transport.Socket
-
Packages that use Socket Package Description org.simpleframework.http.core org.simpleframework.transport -
-
Uses of Socket in org.simpleframework.http.core
Methods in org.simpleframework.http.core with parameters of type Socket Modifier and Type Method Description void
ContainerSocketProcessor. process(Socket socket)
This is used to consume HTTP messages that arrive on the socket and dispatch them to the internal container. -
Uses of Socket in org.simpleframework.transport
Subinterfaces of Socket in org.simpleframework.transport Modifier and Type Interface Description interface
Transport
TheTransport
interface represents a low level means to deliver content to the connected client.Classes in org.simpleframework.transport that implement Socket 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.class
SocketWrapper
This is aSocketWrapper
objects that represents a TCP socket connections.Fields in org.simpleframework.transport declared as Socket Modifier and Type Field Description private Socket
FlushSignaller. socket
This is the socket that this will be flushing.private Socket
NegotiationState. socket
This is the socket representing the underlying TCP connection.private Socket
SocketTransport. socket
This is the socket that this transport is representing.Methods in org.simpleframework.transport with parameters of type Socket Modifier and Type Method Description Operation
OperationFactory. getInstance(Socket socket)
This method is used to createOperation
object to process the next phase of the negotiation.private Operation
OperationFactory. getInstance(Socket socket, javax.net.ssl.SSLEngine engine)
This method is used to createOperation
object to process the next phase of the negotiation.void
SocketProcessor. process(Socket socket)
Used to process theSocket
which is a full duplex TCP connection to a higher layer the application.void
TransportSocketProcessor. process(Socket socket)
Used to connect theSocket
which is a full duplex TCP connection to a higher layer the application.Constructors in org.simpleframework.transport with parameters of type Socket Constructor Description Challenge(Socket socket)
Constructor for theChallenge
object.Delegate(Socket socket)
Constructor for theDelegate
object.FlushScheduler(Socket socket, Reactor reactor, Operation task, java.lang.Object lock)
Constructor for theFlushScheduler
object.FlushSignaller(SocketFlusher writer, Socket socket)
Constructor for theFlushSignaller
object.NegotiationState(Negotiation negotiation, Socket socket)
Constructor for theNegotiationCertificate
object.SocketBuffer(Socket socket, int chunk, int limit)
Constructor for theSocketBuffer
object.SocketBufferAppender(Socket socket, int chunk, int limit)
Constructor for theSocketBufferAppender
object.SocketBufferWriter(Socket socket, Reactor reactor, int buffer, int threshold)
Constructor for theSocketBufferWriter
object.SocketFlusher(SocketBuffer buffer, Socket socket, Reactor reactor)
Constructor for theSocketFlusher
object.SocketTransport(Socket socket, Reactor reactor)
Constructor for theSocketTransport
object.SocketTransport(Socket socket, Reactor reactor, int buffer)
Constructor for theSocketTransport
object.SocketTransport(Socket socket, Reactor reactor, int buffer, int threshold)
Constructor for theSocketTransport
object.
-