UAActionStatus
Objective-C
enum UAActionStatus : NSInteger {}
Swift
enum ActionStatus : Int, @unchecked Sendable
Represents the action status.
-
The action accepted the arguments and executed without an error.
Declaration
Objective-C
UAActionStatusCompleted
Swift
case completed = 0
-
The action was not performed because the arguments were rejected by either the predicate in the registry or the action.
Declaration
Objective-C
UAActionStatusArgumentsRejected
Swift
case argumentsRejected = 1
-
The action was not performed because the action was not found in the registry. This value is only possible if trying to run an action by name through the runner.
Declaration
Objective-C
UAActionStatusActionNotFound
Swift
case actionNotFound = 2
-
The action encountered an error during execution.
Declaration
Objective-C
UAActionStatusError
Swift
case error = 3