2017-09-18 10:07:21 +00:00
|
|
|
|
|
|
|
import mitogen.core
|
2018-02-14 22:40:09 +00:00
|
|
|
import mitogen.parent
|
2017-09-18 10:07:21 +00:00
|
|
|
|
|
|
|
|
2017-09-18 11:33:30 +00:00
|
|
|
@mitogen.core.takes_econtext
|
|
|
|
def allocate_an_id(econtext):
|
2018-02-14 22:40:09 +00:00
|
|
|
mitogen.parent.upgrade_router(econtext)
|
2017-09-18 11:33:30 +00:00
|
|
|
return econtext.router.allocate_id()
|
2017-09-18 10:07:21 +00:00
|
|
|
|