We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Within asyncio code, we should be able to wait for greenlets like this:
@asyncio.coroutine def some_routine(): yield from as_future(gevent.spawn(....))
Likewise, we should also be able to wait for futures in gevent code:
def gevent_handle(): wait_future(asyncio.sleep(1))
At last, we want to mix explicit asyncio yields and implicit gevent switches in one method:
@tulipcore.coroutine def some_routine(): yield from asyncio.sleep(1) gevent.sleep(1)
The text was updated successfully, but these errors were encountered:
This would be extremely handy. I'd like to see some gunicorn demos soon!
Sorry, something went wrong.
https://github.com/decentfox/tulipcore/tree/coroutine
No branches or pull requests
Within asyncio code, we should be able to wait for greenlets like this:
Likewise, we should also be able to wait for futures in gevent code:
At last, we want to mix explicit asyncio yields and implicit gevent switches in one method:
The text was updated successfully, but these errors were encountered: