Function
createPipeServer
(
name: string,
options?: PipeServerOptions,
)
Source from the content-addressed store, hash-verified
| 508 | // --------------------------------------------------------------------------- |
| 509 | |
| 510 | export async function createPipeServer( |
| 511 | name: string, |
| 512 | options?: PipeServerOptions, |
| 513 | ): Promise<PipeServer> { |
| 514 | const server = new PipeServer(name) |
| 515 | await server.start(options) |
| 516 | return server |
| 517 | } |
| 518 | |
| 519 | export async function connectToPipe( |
| 520 | targetName: string, |
Callers
nothing calls this directly
Tested by
no test coverage detected