svgui/pyjs/jsonrpc/README.txt
author Edouard Tisserant
Wed, 05 Dec 2018 13:05:51 +0100
changeset 2467 fce6ab7ae156
parent 728 e0424e96e3fd
permissions -rw-r--r--
Enure that autostart blocks other @RunInMain PLCObject methods, and _unblocks_ them once autostart is done...
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