Uses of Class
com.caucho.vfs.QSocket

Packages that use QSocket
com.caucho.network.listen   
com.caucho.vfs Resin's Virtual File System. 
com.caucho.vfs.net   
 

Uses of QSocket in com.caucho.network.listen
 

Methods in com.caucho.network.listen that return QSocket
 QSocket TcpSocketLink.getSocket()
          Returns the connection's socket
 

Methods in com.caucho.network.listen with parameters of type QSocket
 boolean Throttle.accept(QSocket socket)
           
 void Throttle.close(QSocket socket)
           
 

Uses of QSocket in com.caucho.vfs
 

Subclasses of QSocket in com.caucho.vfs
 class JniSocketImpl
          Abstract socket to handle both normal sockets and bin/resin sockets.
 class QSocketChannelWrapper
          Abstract socket to handle both normal sockets and bin/resin sockets.
 class QSocketWrapper
          Abstract socket to handle both normal sockets and bin/resin sockets.
 

Methods in com.caucho.vfs that return QSocket
abstract  QSocket QServerSocket.createSocket()
           
 QSocket QServerSocketWrapper.createSocket()
          Creates a new socket object.
 QSocket JniServerSocketImpl.createSocket()
          Factory method creating an instance socket.
 

Methods in com.caucho.vfs with parameters of type QSocket
abstract  boolean QServerSocket.accept(QSocket socket)
           
 boolean QServerSocketWrapper.accept(QSocket qSocket)
          Accepts a new socket.
 boolean JniServerSocketImpl.accept(QSocket socket)
          Accepts a new connection from the socket.
 

Uses of QSocket in com.caucho.vfs.net
 

Methods in com.caucho.vfs.net that return QSocket
 QSocket NetworkSystem.connect(java.net.InetAddress address, int port, long timeout)
           
abstract  QSocket NetworkSystem.connect(java.net.InetSocketAddress address, long timeout)
           
 QSocket TcpNetworkSystem.connect(java.net.InetSocketAddress addr, long connectTimeout)
           
 QSocket NetworkSystem.connect(java.lang.String address, int port)