java.lang.Object | |
↳ | com.ning.http.client.webdav.WebDavCompletionHandlerBase<T> |
Simple AsyncHandler
that add support for WebDav's response manipulation.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Invoked as soon as some response body part are received.
| |||||||||||
Invoked once the HTTP response processing is finished.
| |||||||||||
Invoked once the HTTP response has been fully read.
| |||||||||||
Invoked as soon as the HTTP headers has been received.
| |||||||||||
Invoked as soon as the HTTP status line has been received
| |||||||||||
Invoked when an unexpected exception occurs during the processing of the response.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Invoked as soon as some response body part are received. Could be invoked many times.
content | response's body part. |
---|
AsyncHandler.STATE
telling to CONTINUE or ABORT the current processing.Exception |
---|
Invoked once the HTTP response processing is finished.
Gets always invoked as last callback method.Exception |
---|
Invoked once the HTTP response has been fully read.
response | The Response |
---|
Exception |
---|
Invoked as soon as the HTTP headers has been received. Can potentially be invoked more than once if a broken server sent trailing headers.
headers | the HTTP headers. |
---|
AsyncHandler.STATE
telling to CONTINUE or ABORT the current processing.Exception |
---|
Invoked as soon as the HTTP status line has been received
status | the status code and test of the response |
---|
AsyncHandler.STATE
telling to CONTINUE or ABORT the current processing.Exception |
---|
Invoked when an unexpected exception occurs during the processing of the response. The exception may have been produced by implementation of onXXXReceived method invocation.
t | a Throwable |
---|