class documentation

class LaunchEmptyResult(LaunchResultBase): (source)

View In Hierarchy

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 class acts as a tagged union. Only one of the ``is_*`` methods will return true. To get the associated value of a tag (if one exists), use the corresponding ``get_*`` method. :ivar async.LaunchEmptyResult.complete: The job finished synchronously and successfully.

Method is_complete Check if the union tag is ``complete``.
Class Variable complete Undocumented
Method _process_custom_annotations Undocumented

Inherited from LaunchResultBase:

Class Method async_job_id Create an instance of this class set to the ``async_job_id`` tag with value ``val``.
Method get_async_job_id 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.
Method is_async_job_id Check if the union tag is ``async_job_id``.
Class Variable _catch_all Undocumented
def is_complete(self): (source)

Check if the union tag is ``complete``. :rtype: bool

complete = (source)

Undocumented

def _process_custom_annotations(self, annotation_type, field_path, processor): (source)