Packagecouk.markstar.starrequests.requests
Interfacepublic interface IRequest extends ICancelable
Implementors AbstractRequest

The interface that defines the core methods that are required for any request.



Public Properties
 PropertyDefined By
 Inheritedcancelled : ISignal
[read-only] Determines if the action has been cancelled.
ICancelable
  completed : ISignal
[read-only] The instance of the completed signal for this request
IRequest
  failed : ISignal
[read-only] The instance of the failed signal for this request
IRequest
  progress : ISignal
[read-only] The instance of the progress signal for this request
IRequest
  started : ISignal
[read-only] The instance of the started signal for this request
IRequest
Public Methods
 MethodDefined By
 Inherited
cancel():void
Call this function to cancel the action.
ICancelable
  
send():void
Call this function to execute the request.
IRequest
Property Detail
completedproperty
completed:ISignal  [read-only]

The instance of the completed signal for this request


Implementation
    public function get completed():ISignal
failedproperty 
failed:ISignal  [read-only]

The instance of the failed signal for this request


Implementation
    public function get failed():ISignal
progressproperty 
progress:ISignal  [read-only]

The instance of the progress signal for this request


Implementation
    public function get progress():ISignal
startedproperty 
started:ISignal  [read-only]

The instance of the started signal for this request


Implementation
    public function get started():ISignal
Method Detail
send()method
public function send():void

Call this function to execute the request.