package.dist.src.batchutils.batch-functions.d.ts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk Show documentation
Show all versions of sdk Show documentation
Client SDK for Momento services
The newest version!
import { ICacheClient } from '@gomomento/sdk-core';
import { BatchDeleteOptions, BatchDeleteResponse, BatchGetOptions, BatchGetResponse, BatchSetOptions, BatchSetResponse, BatchSetItem, defaultMaxConcurrentRequests, defaultTtlSeconds } from './batch-props';
export { BatchDeleteOptions, BatchDeleteResponse, BatchGetOptions, BatchGetResponse, BatchSetOptions, BatchSetResponse, BatchSetItem, defaultMaxConcurrentRequests, defaultTtlSeconds, };
export declare function batchGet(cacheClient: ICacheClient, cacheName: string, keys: Array, options?: BatchGetOptions): Promise;
export declare function batchSet(cacheClient: ICacheClient, cacheName: string, items: Array, options?: BatchSetOptions): Promise;
export declare function batchDelete(cacheClient: ICacheClient, cacheName: string, keys: Array, options?: BatchDeleteOptions): Promise;