← Standard library

QueryScanStatus

struct QueryScanStatus
import QueryScanStatus from Wax::Recording;

The requested and actually covered frame ranges of a query scan, together with any failure. Check isComplete before treating a partial result as complete coverage.

Recording.wax:242

Members

requestedRangefield

public FrameRange requestedRange

The frame range the caller requested.

Recording.wax:246

coveredRangefield

public FrameRange coveredRange

The frame range actually covered by the scan.

Recording.wax:250

failurefield

public QueryFailure? failure

The failure that interrupted the scan, or null.

Recording.wax:254

isCompletegetter

public get isComplete() : bool

True only when there is no failure and coveredRange exactly equals requestedRange.

Recording.wax:259

ToStringmethod

public fn ToString() : string

Provided by the compiler.

ToStringBuffermethod

public fn ToStringBuffer(StringBuilder builder) : int32

Provided by the compiler.

constructorconstructor

public constructor ()

Provided by the compiler.