LaunchEmptyResult
public enum LaunchEmptyResult : CustomStringConvertible, JSONRepresentable
Result returned by methods that may either launch an asynchronous job or complete synchronously. Upon synchronous completion of the job, no additional information is returned.
-
This response indicates that the processing is asynchronous. The string is an id that can be used to obtain the status of the asynchronous job.
Declaration
Swift
case asyncJobId(String)
-
The job finished synchronously and successfully.
Declaration
Swift
case complete
-
Declaration
Swift
public var description: String { get }