Source code for thriftpool.components.loop

from __future__ import absolute_import

from .base import StartStopComponent


[docs]class BaseLoopComponent(StartStopComponent): abstract = True
[docs] def create(self, parent): return parent.app.thriftworker.hub

Project Versions

This Page