(self, *handlers, **kwargs)
| 99 | |
| 100 | class Container(object): |
| 101 | def __init__(self, *handlers, **kwargs): |
| 102 | self.tornado_loop = kwargs.get('loop', tornado.ioloop.IOLoop.instance()) |
| 103 | kwargs['global_handler'] = TornadoLoopHandler(self.tornado_loop, kwargs.get('handler_base', None)) |
| 104 | self.container = BaseContainer(*handlers, **kwargs) |
| 105 | |
| 106 | def initialise(self): |
| 107 | self.container.start() |
nothing calls this directly
no test coverage detected