Class Processing

java.lang.Object
org.apache.juneau.http.response.BasicHttpResponse
org.apache.juneau.http.response.Processing
All Implemented Interfaces:
HttpMessage, HttpResponse

@Response @StatusCode(102) @Schema(description="Processing") public class Processing extends BasicHttpResponse
Represents an HTTP 102 Processing response.

A WebDAV request may contain many sub-requests involving file operations, requiring a long time to complete the request. This code indicates that the server has received and is processing the request, but no response is available yet. This prevents the client from timing out and assuming the request was lost.

See Also: