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
{{ message }}
This repository was archived by the owner on Jan 23, 2024. It is now read-only.
To merge #20 the background task was disabled and a single blocking request function is used which internally spins until the response is received.
request should instead be async and sleeps until the background task receives a response at which point it can be woken. This would require implementing the Waker behaviour for the scheduler so was avoided for now.
To merge #20 the background task was disabled and a single blocking
requestfunction is used which internally spins until the response is received.requestshould instead be async and sleeps until the background task receives a response at which point it can be woken. This would require implementing the Waker behaviour for the scheduler so was avoided for now.