Add ProcessManagingEventHandler to event_handler_main

This commit is contained in:
Kristóf Tóth 2018-02-21 14:44:49 +01:00
parent 387d07bc4a
commit c96f50711d

View File

@ -1,5 +1,6 @@
from tfw.components.source_code_event_handler import SourceCodeEventHandler
from tfw.components.terminado_event_handler import TerminadoEventHandler
from tfw.components.process_managing_event_handler import ProcessManagingEventHandler
from tornado.ioloop import IOLoop
from tfw.config import tfwenv
@ -7,7 +8,8 @@ from tfw.config import tfwenv
if __name__ == '__main__':
eventhandlers = {SourceCodeEventHandler('anchor_webide', tfwenv.WEBIDE_WD),
TerminadoEventHandler('anchor_terminado', 'terminado')}
TerminadoEventHandler('anchor_terminado', 'terminado'),
ProcessManagingEventHandler('anchor_processmanager', 'login')}
try:
IOLoop.instance().start()
finally: