Page Summary
-
GMTSTaskOutcomeis an enumeration defining possible outcomes of a task. -
GMTSTaskOutcomeUnspecifiedindicates an unspecified task outcome, represented by the value 0 in both Swift and Objective-C. -
GMTSTaskOutcomeSuccessrepresents a successful task outcome, with a value of 1 in Swift and Objective-C. -
GMTSTaskOutcomeFailuresignifies a failed task outcome, corresponding to a value of 2 in both Swift and Objective-C.
GMTSTaskOutcome
enum GMTSTaskOutcome : NSUInteger {}\defgroup GMTSTaskOutcome GMTSTaskOutcome @{
-
Declaration
Swift
case unspecified = 0Objective-C
GMTSTaskOutcomeUnspecified = 0 -
Declaration
Swift
case success = 1Objective-C
GMTSTaskOutcomeSuccess -
Declaration
Swift
case failure = 2Objective-C
GMTSTaskOutcomeFailure