BIS fnc taskState: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (page filling)
m (template:command argument fix)
Line 8: Line 8:
____________________________________________________________________________________________
____________________________________________________________________________________________


|  Returns task's state. |= Description
|  Returns task's state. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| taskID call '''BIS_fnc_taskState''' |= Syntax
| taskID call '''BIS_fnc_taskState''' |SYNTAX=


|p1= taskID: [[String]] - ID of the task |= Parameter 1
|p1= taskID: [[String]] - ID of the task |PARAMETER1=


| [[String]] - State of the task. Can be:
| [[String]] - State of the task. Can be:
Line 21: Line 21:
*SUCCEEDED
*SUCCEEDED
*FAILED
*FAILED
*CANCELED|= Return value
*CANCELED|RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code>"task_1" [[call]] '''BIS_fnc_taskState''';</code> |= example 1
|x1= <code>"task_1" [[call]] '''BIS_fnc_taskState''';</code> |EXAMPLE1=
|x2= <code>["task_1"] [[call]] '''BIS_fnc_taskState''';</code> |= example 2
|x2= <code>["task_1"] [[call]] '''BIS_fnc_taskState''';</code> |EXAMPLE2=


____________________________________________________________________________________________
____________________________________________________________________________________________


| [[BIS_fnc_setTask]], [[Arma_3_Task_Framework|Task Framework]], [[Arma_3_Tasks_Overhaul|Tasks Overhaul]] |= See also
| [[BIS_fnc_setTask]], [[Arma_3_Task_Framework|Task Framework]], [[Arma_3_Tasks_Overhaul|Tasks Overhaul]] |SEEALSO=
}}
}}



Revision as of 15:33, 7 April 2019


Hover & click on the images for description

Description

Description:
Returns task's state.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
taskID call BIS_fnc_taskState
Parameters:
taskID: String - ID of the task
Return Value:
String - State of the task. Can be:
  • AUTOASSIGNED
  • ASSIGNED
  • CREATED
  • SUCCEEDED
  • FAILED
  • CANCELED

Examples

Example 1:
"task_1" call BIS_fnc_taskState;
Example 2:
["task_1"] call BIS_fnc_taskState;

Additional Information

See also:
BIS_fnc_setTaskTask FrameworkTasks Overhaul

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section