class documentation

class TimerView(View): (source)

Constructor: TimerView(**kwargs)

View In Hierarchy

Supports a timer for executing operators/events after a specified duration or interval.

Parameters
timeoutthe duration in milliseconds to wait before executing the operator
intervalthe interval in milliseconds to wait before executing the operator
on_timeoutthe operator to execute when the timeout is reached
on_intervalthe operator to execute at the interval
paramsthe params passed to the on_interval or on_timeout operator
Method __init__ Undocumented

Inherited from View:

Method clone Undocumented
Method kwargs_to_json Undocumented
Method to_json Undocumented
Instance Variable caption Undocumented
Instance Variable component Undocumented
Instance Variable componentsProps Undocumented
Instance Variable container Undocumented
Instance Variable description Undocumented
Instance Variable label Undocumented
Instance Variable placeholder Undocumented
Instance Variable read_only Undocumented
Instance Variable space Undocumented
Instance Variable _kwargs Undocumented
def __init__(self, **kwargs): (source) ΒΆ