More actions
Nguyenduyan (talk | contribs) Created page with "{{CGscriptClass_Template |Name=<nowiki>CatTaskSpecificTimeSchedule</nowiki> |Description=<nowiki>Schedule cattask to run at a specific time</nowiki> |Constructors= {{CGscriptC..." |
Nguyenduyan (talk | contribs) No edit summary |
||
Line 13: | Line 13: | ||
{{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Description=<nowiki>Get information about this class.</nowiki>}} | {{CGscriptProperties_Template|ReturnType=TypeInformation|Name=<nowiki>TypeInformation</nowiki>|HasGetter=1|Description=<nowiki>Get information about this class.</nowiki>}} | ||
}} | }} | ||
=== <span style="color:#DF8621">'''Examples'''</span> === | |||
<source lang="javascript"> | |||
//CatTaskSpecificTimeSchedule | |||
number workflowRId = 15562503; | |||
WorkflowScript wS = new WorkflowScript(workflowRId); | |||
DateTime dt = new DateTime("2017/05/31 03:10"); | |||
CatTaskSpecificTimeSchedule schedule = new CatTaskSpecificTimeSchedule(dt); | |||
bool informMe = false; | |||
array parameters={}; | |||
wS.Schedule(schedule, informMe, parameters);//Returns CatTask instance id: 104700 (CatTaskMetaDataId: 54183) | |||
</source> |
Revision as of 02:30, 31 May 2017
CatTaskSpecificTimeSchedule
Schedule cattask to run at a specific time
Constructors
- (DateTime time "Time to run") - Run at a specific time
Methods
- string ToString() - The string representation of the object.
Properties
- string ObjectTypeName { get; } - The name of the type of object.
- DateTime Time { get; } - Time to run
- TypeInformation TypeInformation { get; } - Get information about this class.
Examples
//CatTaskSpecificTimeSchedule
number workflowRId = 15562503;
WorkflowScript wS = new WorkflowScript(workflowRId);
DateTime dt = new DateTime("2017/05/31 03:10");
CatTaskSpecificTimeSchedule schedule = new CatTaskSpecificTimeSchedule(dt);
bool informMe = false;
array parameters={};
wS.Schedule(schedule, informMe, parameters);//Returns CatTask instance id: 104700 (CatTaskMetaDataId: 54183)