Méthode | Description | |
---|---|---|
Cancel ( string id ) : bool |
Cancels a task
|
|
CancelSchedule ( string id ) : void |
Cancels a schedule
|
|
Code ( string id ) : |
Gets information on a code object
|
|
CodeRevisions ( string id, int page, int per_page = 30 ) : IList |
Gets a paged list of the revisions of a code object
|
|
Codes ( int page, int per_page = 30 ) : IList |
Gets a paged list of code objects
|
|
DeleteCode ( string id ) : void |
Deletes a code object
|
|
IronWorker ( string projectId = null, string token = null ) : System |
Initializes a new instance of the IronWorker class.
|
|
Log ( string id ) : string |
Get a log
|
|
Queue ( IEnumerable |
Enqueue an IEnumerable of Task
|
|
Queue ( string code_name, string payload, int priority, int timeout = 3600, int delay ) : IList |
Enqueue a single task
|
|
Schedule ( string id ) : |
Gets a Schedule
|
|
ScheduleWorker ( ) : IList |
Schedules tasks
|
|
Schedules ( int page, int per_page = 30 ) : IList |
Gets a paged list of Schedules
|
|
Task ( string id ) : |
Get a Task
|
|
Tasks ( int page, int per_page = 30, StatusEnum statusFilter = StatusEnum.All, System.DateTime from_time = null, System.DateTime to_time = null ) : IList |
Gets a paged list of Tasks
|
public CancelSchedule ( string id ) : void | ||
id | string | Schedule identifier |
Résultat | void |
public Code ( string id ) : |
||
id | string | Code identifier |
Résultat |
public CodeRevisions ( string id, int page, int per_page = 30 ) : IList |
||
id | string | Code identifier |
page | int | Zero based page index |
per_page | int | Number of results per page |
Résultat | IList |
public Codes ( int page, int per_page = 30 ) : IList |
||
page | int | Zero based page index |
per_page | int | Number of results per page |
Résultat | IList |
public DeleteCode ( string id ) : void | ||
id | string | Code identifier |
Résultat | void |
public IronWorker ( string projectId = null, string token = null ) : System | ||
projectId | string | Project identifier available from the HUD |
token | string | Token available from the HUD |
Résultat | System |
public Queue ( IEnumerable |
||
tasks | IEnumerable |
Tasks to be enqueued |
Résultat | IList |
public Queue ( string code_name, string payload, int priority, int timeout = 3600, int delay ) : IList |
||
code_name | string | Code name of the task |
payload | string | JSON payload to be sent to the task |
priority | int | Task priority |
timeout | int | Task timeout |
delay | int | Delay in seconds before executing the task |
Résultat | IList |
public Schedule ( string id ) : |
||
id | string | Schedule identifier |
Résultat |
public Schedules ( int page, int per_page = 30 ) : IList |
||
page | int | Zero based page index |
per_page | int | Number of results per page |
Résultat | IList |
public Task ( string id ) : |
||
id | string | Task identifier |
Résultat |
public Tasks ( int page, int per_page = 30, StatusEnum statusFilter = StatusEnum.All, System.DateTime from_time = null, System.DateTime to_time = null ) : IList |
||
page | int | Zero based page index |
per_page | int | Number of results per page |
statusFilter | StatusEnum | Only lists tasks that match this status filter |
from_time | System.DateTime | Lower bound of the time of the task |
to_time | System.DateTime | Upper bound of the time of the task |
Résultat | IList |