Function
logsOut
(clientExpression: string, done: Function)
Source from the content-addressed store, hash-verified
| 15 | |
| 16 | export const client = { |
| 17 | logsOut (clientExpression: string, done: Function) { |
| 18 | clientHandler.getClients(clientExpression).forEach((client) => { |
| 19 | client.client.close() |
| 20 | }) |
| 21 | // current sync since protocol doesn't yet support async |
| 22 | done() |
| 23 | }, |
| 24 | |
| 25 | connect (clientExpression: string, server: string) { |
| 26 | clientHandler.getClientNames(clientExpression).forEach((clientName) => { |
Callers
nothing calls this directly
Tested by
no test coverage detected