Source code for thriftpool.remote.handler

from thriftpool.remote.ThriftPool import Iface
from thriftpool.remote.ThriftPool import Processor
from thriftpool.base import BaseHandler


[docs]class Handler(BaseHandler, Iface):
[docs] class options: name = 'ThriftPool' processor = Processor
[docs] def ping(self): pass
[docs] def echoString(self, s): return s

Project Versions

This Page