mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-07-29 01:38:40 -04:00
network fixes
This commit is contained in:
parent
0fb49bf715
commit
f65400a1ce
16 changed files with 309 additions and 129 deletions
|
@ -5,6 +5,7 @@ import 'dart:convert';
|
|||
/////////////////////////////////////
|
||||
/// VeilidTableDB
|
||||
abstract class VeilidTableDBTransaction {
|
||||
bool isDone();
|
||||
Future<void> commit();
|
||||
Future<void> rollback();
|
||||
Future<void> store(int col, Uint8List key, Uint8List value);
|
||||
|
@ -24,6 +25,7 @@ abstract class VeilidTableDBTransaction {
|
|||
}
|
||||
|
||||
abstract class VeilidTableDB {
|
||||
void close();
|
||||
int getColumnCount();
|
||||
Future<List<Uint8List>> getKeys(int col);
|
||||
VeilidTableDBTransaction transact();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue