aiorpcx.jsonrpc.Request

Here are the examples of the python api aiorpcx.jsonrpc.Request taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

3 Source : session.py
with MIT License
from kyuupichan

    async def send_request(self, method, args=()):
        '''Send an RPC request over the network.'''
        message, future = self.connection.send_request(Request(method, args))
        return await self._send_concurrent(message, future, 1)

    async def send_notification(self, method, args=()):

0 Source : session.py
with MIT License
from kyuupichan

    def add_request(self, method, args=()):
        self._requests.append(Request(method, args))

    def add_notification(self, method, args=()):