Zane Bitter c5b065c3e4 eventletutils: Optimise EventletEvent.clear()
When EventletEvent.clear() is called twice in succession without an
intervening set(), there's no need to replace the underlying
eventlet.event.Event object, since it has never been sent. Doing so
would have woken other greenthreads waiting on the event to no
particular end.

When clear() is called after the event has been set(), we already did
not do anything special with the existing eventlet.event.Event as we
cannot call send() on it twice. We simply replace it with a new one; the
code in wait() will handle the situation correctly, since it will wake
up (due to the initial event having been sent) and begin waiting on the
new eventlet.event.Event instead. This is consistent with the observed
behaviour of threading.Event. A new unit test verifies this.

Change-Id: Ibd5324926431fc760c3dd0be064324e3009cc2c2
2019-01-25 14:56:57 +13:00
2018-04-24 14:23:21 +00:00
2018-07-26 12:40:33 +00:00
2018-07-04 08:28:15 +07:00
2018-12-20 20:16:55 +01:00
2015-11-16 23:17:37 +08:00
2018-06-21 13:24:46 +08:00
2017-03-03 00:03:24 +00:00
2018-07-04 08:28:15 +07:00

Team and repository tags

image

oslo.utils

Latest Version

Downloads

The oslo.utils library provides support for common utility type functions, such as encoding, exception handling, string manipulation, and time handling.

Description
OpenStack library utils
Readme 8 MiB
Languages
Python 100%