Пример #1
0
 def initialize(self, **kwargs):
     # When configured to use LayeredTwistedIOLoop we can't easily
     # get the next-best IOLoop implementation, so use the lowest common
     # denominator.
     self.real_io_loop = SelectIOLoop(make_current=False)
     reactor = TornadoReactor(io_loop=self.real_io_loop)
     super(LayeredTwistedIOLoop, self).initialize(reactor=reactor, **kwargs)
     self.add_callback(self.make_current)
Пример #2
0
 def initialize(self, **kwargs):
     # When configured to use LayeredTwistedIOLoop we can't easily
     # get the next-best IOLoop implementation, so use the lowest common
     # denominator.
     self.real_io_loop = SelectIOLoop(make_current=False)  # type: ignore