UNPKG

hazelcast-client

Version:

Hazelcast - open source In-Memory Data Grid - client for NodeJS

9 lines (8 loc) 225 B
/// <reference types="bluebird" /> import * as Promise from 'bluebird'; export interface DistributedObject { getPartitionKey(): string; getName(): string; getServiceName(): string; destroy(): Promise<void>; }