ImagingTools Core SDK
Public Types | List of all members
imtrest::IHttpClientRequestabstract

#include <IHttpClientRequest.h>

Inherits istd::IChangeable.

Public Types

enum  RequestState {
  RS_CREATED = 0x0000 , RS_READY_TO_PROCESSING = 0x0001 , RS_PROCESSING = 0x0002 , RS_FINISHED = 0x0004 ,
  RS_NO_ERROR = 0x0008 , RS_ERROR = 0x0010
}
 

Detailed Description

Interface for a container that containing information about HTTP requests(is a unit of model).

Definition at line 19 of file IHttpClientRequest.h.

Member Enumeration Documentation

◆ RequestState

Enumerator
RS_CREATED 

Just created, and not ready to be proceeded.

RS_READY_TO_PROCESSING 

ready to proceed (When all properties have been set)

RS_PROCESSING 

Processing of the request started.

RS_FINISHED 

Processing of the request has been finished.

RS_NO_ERROR 

Processing of the request has been finished with normal result.

RS_ERROR 

Processing of the request has been finished with error.

Definition at line 22 of file IHttpClientRequest.h.