UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

44 lines (43 loc) 1.56 kB
import { ClusterMode, Parameter, ClusterConfiguration, NamespaceSettings, ClusterRole } from "./index"; export interface ClusterSettingsInterface { configuration?: ClusterConfiguration; connectTimeout?: number; mode?: ClusterMode; name?: string; namespace?: NamespaceSettings; nodeName?: string; role?: ClusterRole; secretKey?: string; stopOnError?: boolean; } export declare class ClusterSettings implements ClusterSettingsInterface, Parameter { configuration?: ClusterConfiguration; connectTimeout?: number; mode?: ClusterMode; name?: string; namespace?: NamespaceSettings; nodeName?: string; role?: ClusterRole; secretKey?: string; stopOnError?: boolean; constructor(data: any); static getConfigurationDescription(): string; static getConnectTimeoutDefault(): number; static getConnectTimeoutDescription(): string; static getModeDefault(): ClusterMode; static getModeDescription(): string; static getNameDefault(): string; static getNameDescription(): string; static getNamespaceDescription(): string; static getNodeNameDefault(): string; static getNodeNameDescription(): string; static getRoleDefault(): ClusterRole; static getRoleDescription(): string; static getSecretKeyDefault(): string; static getSecretKeyDescription(): string; static getStopOnErrorDefault(): boolean; static getStopOnErrorDescription(): string; static fromJson(data: any): ClusterSettings; toJson(): any; clone(): ClusterSettings; }