DataHubConnection.DataHubConnection.preciseTimer ( self, loop, delay, interval, callback, * args, ** kwargs)
Create a precise timer with no drift. The precise timer is
slower than the regular timer but is extremely accurate.
Arguments:
loop: The event loop.
delay: The initial delay in milliseconds.
interval: The interval in milliseconds.
callback: The callback function.
*args: Additional arguments for the callback.
**kwargs: Additional keyword arguments for the callback.
Returns:
PreciseTimer: The created precise timer.