コード例 #1
0
ファイル: session.py プロジェクト: fr3aker/aiorpcX
 async def send_notification(self, method, args=()):
     '''Send an RPC notification over the network.'''
     message = self.connection.send_notification(Notification(method, args))
     await self._send_message(message)
コード例 #2
0
ファイル: session.py プロジェクト: fr3aker/aiorpcX
 def add_notification(self, method, args=()):
     self._requests.append(Notification(method, args))