Properties
Private containers
containers
: Map<string, Container<any>> = new Map<string, Container<any>>()
Private decoder
decoder: TextDecoder = new TextDecoder()
Private encoder
encoder: TextEncoder = new TextEncoder()
Private logger
logger: Logger = getLogger()
Private onStdin
onStdin: (id: string) => Promise<Uint8Array>
Type declaration
-
- (id: string): Promise<Uint8Array>
-
Parameters
Returns Promise<Uint8Array>
Private onStdinSync
onStdinSync: (id: string) => Uint8Array | null
Type declaration
-
- (id: string): Uint8Array | null
-
Parameters
Returns Uint8Array | null
Private onStdout
onStdout: (id: string, content: Uint8Array) => Promise<void>
Type declaration
-
- (id: string, content: Uint8Array): Promise<void>
-
Parameters
-
id: string
-
content: Uint8Array
Returns Promise<void>