|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ClientConnectionOperator
Interface for opening connections
.
This interface encapsulates the logic to create sockets and to
open or update the connection with the new socket.
Implementations will most likely make use of
socket factories
.
The methods in this interface allow the creation of plain and layered
sockets. Creating a tunnelled connection through a proxy, however,
is not within the scope of the operator.
Method Summary | |
---|---|
OperatedClientConnection |
createConnection()
Creates a new connection that can be operated. |
void |
openConnection(OperatedClientConnection conn,
org.apache.http.HttpHost target,
java.net.InetAddress local,
org.apache.http.protocol.HttpContext context,
org.apache.http.params.HttpParams params)
Opens a connection to the given target host. |
void |
updateSecureConnection(OperatedClientConnection conn,
org.apache.http.HttpHost target,
org.apache.http.protocol.HttpContext context,
org.apache.http.params.HttpParams params)
Updates a connection with a layered secure connection. |
Method Detail |
---|
OperatedClientConnection createConnection()
void openConnection(OperatedClientConnection conn, org.apache.http.HttpHost target, java.net.InetAddress local, org.apache.http.protocol.HttpContext context, org.apache.http.params.HttpParams params) throws java.io.IOException
conn
- the connection to opentarget
- the target host to connect tolocal
- the local address to route from, or
null
for the defaultcontext
- the context for the connectionparams
- the parameters for the connection
java.io.IOException
- in case of a problemvoid updateSecureConnection(OperatedClientConnection conn, org.apache.http.HttpHost target, org.apache.http.protocol.HttpContext context, org.apache.http.params.HttpParams params) throws java.io.IOException
conn
- the open connection to updatetarget
- the target host for the updated connection.
The connection must already be open or tunnelled
to the host and port, but the scheme of the target
will be used to create a layered connection.context
- the context for the connectionparams
- the parameters for the updated connection
java.io.IOException
- in case of a problem
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |