set_interval method

set_interval

Schedules a timeout to run handler every timeout milliseconds. Any arguments are passed straight through to the handler.

Returns

The handle

def set_interval(self, handler, timeout, args):
    ...
ParameterTypeDescription
handleranyThe handler.
timeoutintThe timeout.
argslistThe arguments.

See Also