QueryStatus enum Query

The status of a query.

Inheritance

Constructors

QueryStatus()
const

Values

running → const QueryStatus

The query is still running.

success → const QueryStatus

The query completed successfully.

errors → const QueryStatus

The query completed with errors.

completed → const QueryStatus

The query completed but the outcome was unknown.

stopped → const QueryStatus

The query was stopped.

timeout → const QueryStatus

The query timed out during execution.

closed → const QueryStatus

A connection was closed during execution of the query.

fatal → const QueryStatus

The query stopped with fatal errors.

aborted → const QueryStatus

The query was aborted while executing.

unknown → const QueryStatus

The status of the query is unknown.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<QueryStatus>
A constant List of the values in this enum, in order of their declaration.