Uses of Class
php.java.servlet.ConnectionPool.ConnectionException

Packages that use ConnectionPool.ConnectionException
php.java.servlet PHP/Java Bridge Servlet. 
 

Uses of ConnectionPool.ConnectionException in php.java.servlet
 

Methods in php.java.servlet that throw ConnectionPool.ConnectionException
 void ConnectionPool.DefaultInputStream.close()
           
 void ConnectionPool.DefaultOutputStream.close()
           
 java.net.Socket ConnectionPool.Factory.connect(java.lang.String host, int port)
          Create a new socket and connect it to the given host/port
 void ConnectionPool.DefaultOutputStream.flush()
           
 java.io.InputStream ConnectionPool.Factory.getInputStream()
          Create a new InputStream.
 java.io.InputStream ConnectionPool.Connection.getInputStream()
          Returns the InputStream associated with this connection.
 java.io.OutputStream ConnectionPool.Factory.getOutputStream()
          Create a new OutputStream.
 java.io.OutputStream ConnectionPool.Connection.getOutputStream()
          Returns the OutputStream associated with this connection.
 ConnectionPool.Connection ConnectionPool.openConnection()
          Opens a connection to the back end.
 int ConnectionPool.DefaultInputStream.read()
           
 int ConnectionPool.DefaultInputStream.read(byte[] buf)
           
 int ConnectionPool.DefaultInputStream.read(byte[] buf, int off, int buflength)
           
 void ConnectionPool.DefaultOutputStream.write(byte[] buf)
           
 void ConnectionPool.DefaultOutputStream.write(byte[] buf, int off, int buflength)
           
 void ConnectionPool.DefaultOutputStream.write(int b)
           
 

Constructors in php.java.servlet that throw ConnectionPool.ConnectionException
ConnectionPool(java.lang.String host, int port, int limit, ConnectionPool.Factory factory)
          Create a new connection pool.