All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.dist.src.batchutils.batch-props.d.ts Maven / Gradle / Ivy

The newest version!
import { CacheGet, CacheSet, CacheDelete } from '@gomomento/sdk-core';
export declare const defaultMaxConcurrentRequests = 5;
export declare const defaultTtlSeconds = 60;
export interface BatchFunctionOptions {
    maxConcurrentRequests?: number;
}
export type BatchGetOptions = BatchFunctionOptions;
export type BatchGetResponse = Record;
export type BatchSetOptions = BatchFunctionOptions;
export interface BatchSetItem {
    key: string | Uint8Array;
    value: string | Uint8Array;
    ttl?: number;
}
export type BatchSetResponse = Record;
export type BatchDeleteOptions = BatchFunctionOptions;
export type BatchDeleteResponse = Record;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy