Example #1
0
    def cast(self, command, **props):
        """Fire-and-forget a command to **circusd**

        Options:

        - **command** -- the command to call
        - **props** -- keyword arguments to add to the call
        """
        msg = cast_message(command, **props)
        self.client.send(json.dumps(msg))
Example #2
0
    def cast(self, command, **props):
        """Fire-and-forget a command to **circusd**

        Options:

        - **command** -- the command to call
        - **props** -- keyword arguments to add to the call
        """
        msg = cast_message(command, **props)
        self.client.send(json.dumps(msg))
Example #3
0
 def cast(self, command, **props):
     msg = cast_message(command, **props)
     self.client.send(json.dumps(msg))
Example #4
0
 def cast(self, command, **props):
     msg = cast_message(command, **props)
     self.client.send(json.dumps(msg))