You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, step 5 will never be reached. The reason is that nodeHandshake() leaves events registered with epoll (they are all of the form 10: ConnectProtocol fd=177 events=ReRh, I think they are listening for read events on each node?)
So eventLoop() never returns.
The text was updated successfully, but these errors were encountered:
The example in dhtproto/src/dhtproto/client/UsageExamples.d instead calls dht.blocking.waitAllHashRangesKnown() which can only be run from inside a Task and is therefore conceptually completely different.
Both DmqNeo and DlsNeo are usable without Tasks. If DhtNeo requires Tasks, that should be stated somewhere.
The example in src/dhtproto/client/DhtClient.d is essentially
However, step 5 will never be reached. The reason is that
nodeHandshake()
leaves events registered with epoll (they are all of the form10: ConnectProtocol fd=177 events=ReRh
, I think they are listening for read events on each node?)So
eventLoop()
never returns.The text was updated successfully, but these errors were encountered: