Package com.naver.ads.util
Class RepeatableAction
-
- All Implemented Interfaces:
public final class RepeatableActionRepeat the action until stop is called.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceRepeatableAction.RepeatableActionCallbackRepresents implementation of RepeatableAction.
-
Constructor Summary
Constructors Constructor Description RepeatableAction(Handler handler, Long initialDelayTimeMillis, Long throttleTimeMillis, RepeatableAction.RepeatableActionCallback callback)Constructs a new RepeatableAction.
-
Method Summary
-
-
Constructor Detail
-
RepeatableAction
RepeatableAction(Handler handler, Long initialDelayTimeMillis, Long throttleTimeMillis, RepeatableAction.RepeatableActionCallback callback)
Constructs a new RepeatableAction.- Parameters:
handler- the handler to be executed.initialDelayTimeMillis- the time to delay first execution.throttleTimeMillis- the throttle time millis the termination of one execution and the commencement of the next.callback- the callback to execute.
-
-
-
-