How to manually poll Runtime to drive futures without blocking current thread?
I am trying to implement a non-blocking current-threaded executor on top of Tokio that I can integrate into another single threaded event-loop.
Tokio Channel isn’t Receiving from Streamed Futures
I am making async requests to an API and intending to send the response on a channel to do other things with (like insert into a DB). However, it seems that my Receiver
isn’t reading from the channel properly. I know the requests are succeeding and data is deserialized properly, but I am seeing no action in my receiver.