C# Class Encog.Cloud.CloudTask

Encapsulates an Encog cloud task.
Mostrar archivo Open project: encog/encog-silverlight-core Class Usage Examples

Public Methods

Method Description
CloudTask ( EncogCloud cloud ) : System

Construct a cloud task.

Init ( String name ) : void

Setup this task.

SetStatus ( String status ) : void

Set the status for this task.

Stop ( String finalStatus ) : void

Stop this task.

Method Details

CloudTask() public method

Construct a cloud task.
public CloudTask ( EncogCloud cloud ) : System
cloud EncogCloud The cloud this task belongs to.
return System

Init() public method

Setup this task.
public Init ( String name ) : void
name String The name of this task.
return void

SetStatus() public method

Set the status for this task.
public SetStatus ( String status ) : void
status String The status for this task.
return void

Stop() public method

Stop this task.
public Stop ( String finalStatus ) : void
finalStatus String The final status for this task.
return void