svgui/pyjs/jsonrpc/README.txt
author Edouard Tisserant <edouard.tisserant@gmail.com>
Thu, 19 Mar 2020 19:23:56 +0100
branchsvghmi
changeset 2889 4eeed820fd3a
parent 728 e0424e96e3fd
permissions -rw-r--r--
SVGHMI: reworked widget (un)subscription now a method of widgect object, allowing special subscription methods
These classes are intended for use server-side.

e.g. in a django view.py :

    from pyjs.jsonrpc.django import JSONService, jsonremote

    jsonservice = JSONRPCService()

    @jsonremote(jsonservice)
    def test(request, echo_param):
         return "echoing the param back: %s" % echo_param