Module dbx_async

Source
Available on crate features sync_routes and dbx_async only.

Structs§

PollArg
Arguments for methods that poll the status of an asynchronous job.

Enums§

LaunchEmptyResult
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.
LaunchResultBase
Result returned by methods that launch an asynchronous job. A method who may either launch an asynchronous job, or complete the request synchronously, can use this union by extending it, and adding a ‘complete’ field with the type of the synchronous response. See LaunchEmptyResult for an example.
PollEmptyResult
Result returned by methods that poll for the status of an asynchronous job. Upon completion of the job, no additional information is returned.
PollError
Error returned by methods for polling the status of asynchronous job.
PollResultBase
Result returned by methods that poll for the status of an asynchronous job. Unions that extend this union should add a ‘complete’ field with a type of the information returned upon job completion. See PollEmptyResult for an example.

Type Aliases§

AsyncJobId