C# Class Plasma.ServiceJob

Inheritance: Kimono.KJob, IDisposable
Mostra file Open project: 0xd34df00d/Qross

Public Methods

Method Description
Destination ( ) : string
Dispose ( ) : void
OperationName ( ) : string
Parameters ( ) : QVariant>.Dictionary
Result ( ) : Qyoto.QVariant Returns the result of the operation The result will be invalid if the job has not completed yet, or if the job does not have a meaningful result. Note that this should not be used to find out whether the operation was successful. Instead, you should check the value of error().
ServiceJob ( string destination, string operation, QVariant>.Dictionary parameters ) : System
ServiceJob ( string destination, string operation, QVariant>.Dictionary parameters, QObject parent ) : System Default constructor @arg destination the subject that the job is acting on @arg operation the action that the job is performing on the destination @arg parameters the parameters of the action @arg parent the parent object for this service

Protected Methods

Method Description
CreateProxy ( ) : void
ServiceJob ( Type dummy ) : System
SetResult ( Qyoto.QVariant result ) : void Sets the result for an operation.

Private Methods

Method Description
Start ( ) : void

Method Details

CreateProxy() protected method

protected CreateProxy ( ) : void
return void

Destination() public method

public Destination ( ) : string
return string

Dispose() public method

public Dispose ( ) : void
return void

OperationName() public method

public OperationName ( ) : string
return string

Parameters() public method

public Parameters ( ) : QVariant>.Dictionary
return QVariant>.Dictionary

Result() public method

Returns the result of the operation The result will be invalid if the job has not completed yet, or if the job does not have a meaningful result. Note that this should not be used to find out whether the operation was successful. Instead, you should check the value of error().
public Result ( ) : Qyoto.QVariant
return Qyoto.QVariant

ServiceJob() protected method

protected ServiceJob ( Type dummy ) : System
dummy System.Type
return System

ServiceJob() public method

public ServiceJob ( string destination, string operation, QVariant>.Dictionary parameters ) : System
destination string
operation string
parameters QVariant>.Dictionary
return System

ServiceJob() public method

Default constructor @arg destination the subject that the job is acting on @arg operation the action that the job is performing on the destination @arg parameters the parameters of the action @arg parent the parent object for this service
public ServiceJob ( string destination, string operation, QVariant>.Dictionary parameters, QObject parent ) : System
destination string
operation string
parameters QVariant>.Dictionary
parent Qyoto.QObject
return System

SetResult() protected method

Sets the result for an operation.
protected SetResult ( Qyoto.QVariant result ) : void
result Qyoto.QVariant
return void