3.3.3.66. Timer()

DataHubConnection.DataHubConnection.Timer ( self, loop, delay, interval, callback, * args, ** kwargs)

Create a new timer. This timer is much quicker than the precise timer
but without the same accuracy.

Arguments:
    loop: The event loop.
    delay: The delay before the timer starts.
    interval: The interval between timer executions.
    callback: The callback function to execute.
    *args: Additional arguments for the callback.
    **kwargs: Additional keyword arguments for the callback.
Returns:
    Timer: The created timer.