UNPKG

hazelcast-client

Version:

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

10 lines (9 loc) 412 B
/// <reference types="bluebird" /> import * as Promise from 'bluebird'; import HazelcastClient from '../HazelcastClient'; import { BaseProxy } from './BaseProxy'; export declare class PartitionSpecificProxy extends BaseProxy { private partitionId; constructor(client: HazelcastClient, serviceName: string, name: string); protected encodeInvoke<T>(codec: any, ...codecArguments: any[]): Promise<T>; }