don't block main loop

This commit is contained in:
Dmitriy Ryajov 2019-09-03 20:28:03 -06:00
parent 36917c5adc
commit 1b02c5e4e4
1 changed files with 2 additions and 1 deletions

View File

@ -44,6 +44,7 @@ type
closedLocal*: bool
closedRemote*: bool
mplex*: Mplex
handlerFuture*: Future[void]
proc newMplexUnknownMsgError*(): ref MplexUnknownMsgError =
result = newException(MplexUnknownMsgError, "Unknown mplex message type")
@ -136,7 +137,7 @@ proc handle*(m: Mplex): Future[void] {.async, gcsafe.} =
case msgType:
of MessageType.New:
let channel = await m.newStreamInternal(false, id.int)
await m.streamHandler(newConnection(channel))
channel.handlerFuture = m.streamHandler(newConnection(channel))
of MessageType.MsgIn, MessageType.MsgOut:
let channel = m.getChannelList(initiator)[id.int]
let msg = await m.connection.readLp()