Uses of Interface
org.simpleframework.transport.Socket
-
Packages that use Socket Package Description org.simpleframework.transport -
-
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 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.Methods in org.simpleframework.transport with parameters of type Socket Modifier and Type Method Description 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 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.
-