gevent.rawgreenlet

# XXX these functions do not support ‘timeout’ parameter as gevent.greenlet API # XXX this module does seem to be useful and may be removed in the future

gevent.rawgreenlet.kill(greenlet, exception=<class 'greenlet.GreenletExit'>, block=False, polling_period=0.20000000000000001)
Kill greenlet with exception (GreenletExit by default). Wait for it to die if block is true.
gevent.rawgreenlet.killall(greenlets, exception=<class 'greenlet.GreenletExit'>, block=False, polling_period=0.20000000000000001)
Kill all the greenlets with exception (GreenletExit by default). Wait for them to die if block is true.
gevent.rawgreenlet.join(greenlet, polling_period=0.20000000000000001)
Wait for a greenlet to finish by polling its status
gevent.rawgreenlet.joinall(greenlets, polling_period=0.20000000000000001)
Wait for the greenlets to finish by polling their status

This Page