ObjectboxAdapter class

The ObjectboxAdapter provides a bridge between the store and the Hive backend

Properties

fileMode int?
final
hashCode int
The hash code for this object.
no setterinherited
maxDBSizeInKB int?
final
maxReaders int?
final
path String
The base location of the Objectbox storage
final
queriesCaseSensitiveDefault bool?
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

box<O>(String name) Box<O>?
Returns a partition Box
close() Future<void>
Closes all partitions
create(String name) Future<void>
Creates a partition
delete(String name) Future<void>
Deletes a partition
deleteAll() Future<void>
Deletes all the partitions
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

Static Methods

build(String path, {int? maxDBSizeInKB, int? fileMode, int? maxReaders, bool? queriesCaseSensitiveDefault}) Future<ObjectboxAdapter>
Builds ObjectboxAdapter.