Interface AutoKeyMapBatch<K, V>

Batch APIs for a AutoKeyMap.

interface AutoKeyMapBatch {
    deleteMany(keys, options?): MaybeAsyncIterableIterator<undefined | Error>;
    getMany(keys, options?): MaybeAsyncIterableIterator<undefined | V>;
    hasMany(keys, options?): MaybeAsyncIterableIterator<boolean>;
    putMany(values, options?): MaybeAsyncIterableIterator<[key: K, error?: Error]>;
}

Type Parameters

Hierarchy

Implemented by

Methods

Generated using TypeDoc