Function
logsOut
(clientExpression: string, done: Function)
Source from the content-addressed store, hash-verified
| 5 | |
| 6 | export const client = { |
| 7 | logsOut (clientExpression: string, done: Function) { |
| 8 | clientHandler.getClients(clientExpression).forEach((client) => { |
| 9 | client.client.close() |
| 10 | }) |
| 11 | // current sync since protocol doesn't yet support async |
| 12 | done() |
| 13 | }, |
| 14 | |
| 15 | connect (clientExpression: string, server: string) { |
| 16 | clientHandler.getClientNames(clientExpression).forEach((clientName) => { |
Callers
nothing calls this directly
Tested by
no test coverage detected