org.xsocket.connection.http.client |
|
Java Source File Name | Type | Comment |
ClientUtils.java | Class | |
GetRequest.java | Class | |
HttpClient.java | Class | Higher level client-side abstraction of the client side endpoint. |
HttpClientConnection.java | Class | Represents the client side endpoint implementation of a http connection. |
IHttpClientEndpoint.java | Interface | |
IHttpResponseHandler.java | Interface | call back interface to be notified if the response has been received
Example:
ResponseHandler implements IResponseHandler {
public void onResponse(Response response) throws IOException {
status = response.getStatus();
... |
IHttpResponseTimeoutHandler.java | Interface | The connect handler will be called if a the response timeout has been occurred. |
IResponseHandler.java | Interface | call back interface to be notified if the response has been received
Example:
ResponseHandler implements IResponseHandler {
public void onResponse(Response response) throws IOException {
status = response.getStatus();
... |
IResponseTimeoutHandler.java | Interface | The connect handler will be called if a the response timeout has been occurred. |
PostRequest.java | Class | |