Taipy.gui.broadcast callback
Invoke a callback for every client.
This callback gets invoked for every client connected to the application with the appropriate
State
instance. You can then perform client-specific tasks, such as updating the state
variable reflected in the user interface.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gui |
Gui
|
The current Gui instance. |
required |
callback |
Callable
|
The user-defined function to be invoked. |
required |
args |
Optional[Union[Tuple, List]]
|
The parameters to send to callback, if any. |
None
|