|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.restlet.engine.adapter.Call
org.restlet.engine.adapter.ClientCall
public abstract class ClientCall
Low-level HTTP client call.
Constructor Summary | |
---|---|
ClientCall(HttpClientHelper helper,
String method,
String requestUri)
Constructor setting the request address to the local host. |
Method Summary | |
---|---|
protected long |
getContentLength()
Returns the content length of the request entity if know, Representation.UNKNOWN_SIZE otherwise. |
HttpClientHelper |
getHelper()
Returns the HTTP client helper. |
static String |
getLocalAddress()
Returns the local IP address or 127.0.0.1 if the resolution fails. |
abstract WritableByteChannel |
getRequestEntityChannel()
Returns the request entity channel if it exists. |
abstract OutputStream |
getRequestEntityStream()
Returns the request entity stream if it exists. |
abstract OutputStream |
getRequestHeadStream()
Returns the request head stream if it exists. |
Representation |
getResponseEntity(Response response)
Returns the response entity if available. |
abstract ReadableByteChannel |
getResponseEntityChannel(long size)
Returns the response channel if it exists. |
abstract InputStream |
getResponseEntityStream(long size)
Returns the response entity stream if it exists. |
protected boolean |
isClientKeepAlive()
Indicates if the client wants a persistent connection. |
protected boolean |
isServerKeepAlive()
Indicates if the server wants a persistent connection. |
Status |
sendRequest(Request request)
Sends the request to the client. |
void |
sendRequest(Request request,
Response response,
Uniform callback)
Sends the request to the client. |
protected boolean |
shouldRequestBeChunked(Request request)
Indicates if the request entity should be chunked. |
Methods inherited from class org.restlet.engine.adapter.Call |
---|
getClientAddress, getClientPort, getHostDomain, getHostPort, getLogger, getMethod, getProtocol, getReasonPhrase, getRepresentation, getRepresentation, getRequestHeaders, getRequestUri, getResponseHeaders, getServerAddress, getServerPort, getStatusCode, getUserPrincipal, getVersion, isBroken, isConfidential, isConnectionBroken, isKeepAlive, isRequestChunked, isResponseChunked, setClientAddress, setClientPort, setConfidential, setHostDomain, setHostPort, setMethod, setProtocol, setReasonPhrase, setRequestUri, setServerAddress, setServerPort, setStatusCode, setUserPrincipal, setVersion |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ClientCall(HttpClientHelper helper, String method, String requestUri)
helper
- The parent HTTP client helper.method
- The method name.requestUri
- The request URI.Method Detail |
---|
public static String getLocalAddress()
protected long getContentLength()
Representation.UNKNOWN_SIZE
otherwise.
public HttpClientHelper getHelper()
public abstract WritableByteChannel getRequestEntityChannel()
public abstract OutputStream getRequestEntityStream()
public abstract OutputStream getRequestHeadStream()
public Representation getResponseEntity(Response response)
response
- the Response to get the entity from
public abstract ReadableByteChannel getResponseEntityChannel(long size)
size
- The expected entity size or -1 if unknown.
public abstract InputStream getResponseEntityStream(long size)
size
- The expected entity size or -1 if unknown.
protected boolean isClientKeepAlive()
Call
isClientKeepAlive
in class Call
protected boolean isServerKeepAlive()
Call
isServerKeepAlive
in class Call
public Status sendRequest(Request request)
request
- The high-level request.
public void sendRequest(Request request, Response response, Uniform callback) throws Exception
request
- The high-level request.response
- The high-level response.callback
- The callback invoked upon request completion.
Exception
protected boolean shouldRequestBeChunked(Request request)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |