Uses of Interface
org.simpleframework.transport.Socket

Packages that use Socket
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
 void ContainerServer.process(Socket socket)
          Used to process the Socket which is a full duplex communication link that may contain several HTTP requests.
 

Uses of Socket in org.simpleframework.transport
 

Subinterfaces of Socket in org.simpleframework.transport
 interface Transport
          The Transport interface represents a low level means to deliver content to the connected client.
 

Classes in org.simpleframework.transport that implement Socket
 class SocketTransport
          The SocketTransport object offers a transport that can send and receive bytes in a non-blocking manner.
 class SocketWrapper
          This is a SocketWrapper objects that represents a TCP socket connections.
 

Methods in org.simpleframework.transport with parameters of type Socket
 void Server.process(Socket socket)
          Used to process the Socket which is a full duplex communication link that may contain several HTTP requests.
 void ProcessorServer.process(Socket socket)
          Used to process the Pipeline which is a full duplex communication link that may contain several HTTP requests.
 

Constructors in org.simpleframework.transport with parameters of type Socket
SocketTransport(Socket socket, Reactor reactor)
          Constructor for the SocketTransport object.
SocketTransport(Socket socket, Reactor reactor, int threshold)
          Constructor for the SocketTransport object.
SocketTransport(Socket socket, Reactor reactor, int threshold, int queue)
          Constructor for the SocketTransport object.
SocketTransport(Socket socket, Reactor reactor, int threshold, int queue, int buffer)
          Constructor for the SocketTransport object.
 



Copyright © 2013. All Rights Reserved.