jsonrpc-async icon indicating copy to clipboard operation
jsonrpc-async copied to clipboard

Fix/batch support 2nd implementation

Open tenuki opened this issue 4 years ago • 0 comments

Batch support implementation (addressing: #5), allowing things like:

    server = Server('/', client)
    x = await server.batch_message(
                one=server.uno.raw(),
                two=server.dos.raw(arg="something"))

or:

    server = Server('/', client)
    x = await server.send_message(Batch(
                one=server.uno.raw(),
                two=server.dos.raw(arg="something")))

tenuki avatar Feb 07 '21 22:02 tenuki