Hi,

On 27 April 2014 12:13, Stéphane Bidoul <[email protected]> wrote:

> Hello,
>
> I have a use case where I want to collect Handles created with call_later
> in order to be able to eventually cancel all those that have not run yet.
>

you can access handlers yet to run via the event loop ``_scheduled``
attribute (a list of handlers ordered by execution time):

scheduled = asyncio.get_event_loop()._scheduled


-- 
http://lucasbardella.com

Reply via email to