python-websocketd
Python module for creating a http server which uses WebSockets.

◆ call()

def websocketd.call (   reply,
  target,
a,
**  ka 
)

Make a call to a function or generator.

If target is a generator, the call will return when it finishes. Yielded values are ignored. Extra arguments are passed to target.

Parameters
replyFunction to call with return value when it is ready, or None.
targetFunction or generator to call.
aArguments that are passed to target.
kaKeyword arguments that are passed to target.
Returns
None.

Definition at line 447 of file websocketd.py.