Esempio n. 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))
Esempio n. 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))
Esempio n. 3
0
 def cast(self, command, **props):
     msg = cast_message(command, **props)
     self.client.send(json.dumps(msg))
Esempio n. 4
0
 def cast(self, command, **props):
     msg = cast_message(command, **props)
     self.client.send(json.dumps(msg))