class documentation

class PollEmptyResult(PollResultBase): (source)

View In Hierarchy

Result returned by methods that poll for the status of an asynchronous job. Upon 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.PollEmptyResult.complete: The asynchronous job has completed successfully.

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

Inherited from PollResultBase:

Method is_in_progress Check if the union tag is ``in_progress``.
Class Variable in_progress Undocumented
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)