DownloadBufferMode enum
Describes the buffering mode during a bulk download
For information about buffering, and it's advantages and disadvantages, see this docs page.
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
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.
[disabled, tiles, bytes]