nim-json-rpc/tests/debugclient.nim
2018-06-14 16:53:24 +01:00

21 lines
492 B
Nim

include ../ rpc / client
proc nextId*(self: RpcClient): int64 = self.nextId
proc rawCall*(self: RpcClient, name: string,
msg: string): Future[Response] {.async.} =
# For debug purposes only
let id = $self.nextId
self.nextId.inc
var s = msg & "\c\l"
let res = await self.transp.write(s)
assert res == len(s)
# completed by processMessage.
var newFut = newFuture[Response]()
# add to awaiting responses
self.awaiting[id] = newFut
result = await newFut