mirror of
https://gitlab.com/veilid/veilid.git
synced 2025-08-14 09:26:07 -04:00
Fixed for attach speed and futures optimizations
This commit is contained in:
parent
8de19e0d26
commit
90036e0653
153 changed files with 2037 additions and 1167 deletions
|
@ -13,6 +13,7 @@ impl VeilidTableDB {
|
|||
/// If the column count is greater than an existing TableDB's column count,
|
||||
/// the database will be upgraded to add the missing columns.
|
||||
#[wasm_bindgen(constructor)]
|
||||
#[must_use]
|
||||
pub fn new(tableName: String, columnCount: u32) -> Self {
|
||||
Self {
|
||||
inner_table_db: None,
|
||||
|
@ -139,6 +140,7 @@ impl VeilidTableDBTransaction {
|
|||
/// Use `.createTransaction()` on an instance of `VeilidTableDB` instead.
|
||||
/// @deprecated
|
||||
#[wasm_bindgen(constructor)]
|
||||
#[must_use]
|
||||
pub fn new() -> Self {
|
||||
Self {
|
||||
inner_transaction: None,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue