svgui/pyjs/jsonrpc/web2py/jsonrpc.py
author dporopat <denis.poropat@smarteh.si>
Wed, 18 Apr 2018 10:42:33 +0200
branch#2486
changeset 2201 4e511f5aad19
parent 1881 091005ec69c4
permissions -rw-r--r--
#2486 Added global TransportFactory, needed in WebInterface reconnecting function.
# pylint: disable=undefined-variable

from __future__ import absolute_import
from svgui.pyjs.jsonrpc.jsonrpc import JSONRPCServiceBase


class JSONRPCService(JSONRPCServiceBase):

    def serve(self):
        return self.process(request.body.read())

    def __call__(self, func):
        self.methods[func.__name__] = func
        return func