Interface AstraPollBlockingOptions

The options representing the blocking behavior of many admin operations.

Field

blocking - True or omitted to block until the operation is complete.

Field

pollInterval - The interval (in MS) at which to poll the operation for completion.

See

AstraAdminBlockingOptions

interface AstraPollBlockingOptions {
    blocking?: true;
    pollInterval?: number;
}

Properties

blocking?: true

True or omitted to block until the operation is complete.

pollInterval?: number

The interval (in MS) at which to poll the operation for completion.

The default is determined on a method-by-method basis.