mirror of
https://github.com/codex-storage/nim-json-rpc.git
synced 2025-02-23 16:38:22 +00:00
21 lines
492 B
Nim
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
|