DownloadBufferMode enum

Describes the buffering mode during a bulk download

For information about buffering, and it's advantages and disadvantages, see this docs page.

Inheritance

Constructors

DownloadBufferMode()
const

Values

disabled → const DownloadBufferMode

Disable the buffer (use direct writing)

Tiles will be written directly to the database as soon as they are downloaded.

tiles → const DownloadBufferMode

Set the limit of the buffer in terms of the number of tiles it holds

Tiles will be written to an intermediate memory buffer, then bulk written to the database once there are more tiles than specified.

bytes → const DownloadBufferMode

Set the limit of the buffer in terms of the number of bytes it holds

Tiles will be written to an intermediate memory buffer, then bulk written to the database once there are more bytes than specified.

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<DownloadBufferMode>
A constant List of the values in this enum, in order of their declaration.