Type alias ConnRegistryConn<T, S, C, I>

ConnRegistryConn<T, S, C, I>: {
    config: C;
    conn: T;
    error: any | null;
    id: string;
    initData: I;
    isClosed: boolean;
    promise: Promise<void>;
    state: S;
}

Wrapper for all data of connection maintained by ConnRegistry.

Type Parameters

  • T

  • S

  • C

  • I

Type declaration

  • config: C
  • conn: T
  • error: any | null
  • id: string
  • initData: I
  • isClosed: boolean
  • promise: Promise<void>
  • state: S

Generated using TypeDoc