Simple class that wraps the request handle for clients and server
handle is the request handle pointer
isClient is true if it is a client-side handle
Methods
|
|
__del__
__init__
get_handle
get_request_type
get_status
get_subject
get_url
|
|
__del__
|
__del__ ( self )
|
|
__init__
|
__init__ (
self,
handle,
isClient,
)
|
|
get_handle
|
get_handle ( self )
|
|
get_request_type
|
get_request_type ( self )
Returns a string the request type of the Request handle
|
|
get_status
|
get_status ( self )
Return the status of the request handle
|
|
get_subject
|
get_subject ( self )
Returns the subject associated with the request, the subject has to be set by the user,
Setting the subject of a request is a feature that has not been implemented yet
|
|
get_url
|
get_url ( self )
Returns the url associated with the request
|