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;
}
Type declaration
-
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.