Package io.vertx.reactivex.core
Class Timer
- java.lang.Object
-
- io.vertx.reactivex.core.Timer
-
public class Timer extends Object
A timer task that can be used as a future. The future is completed when the timeout expires, when the task is cancelled the future is failed with aCancellationException. NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<Timer>__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancancel()Attempt to cancel the timer task, when the timer is cancelled, the timer is failed with aCancellationException.booleanequals(Object o)TimergetDelegate()inthashCode()static TimernewInstance(Timer arg)StringtoString()
-
-
-
Method Detail
-
getDelegate
public Timer getDelegate()
-
cancel
public boolean cancel()
Attempt to cancel the timer task, when the timer is cancelled, the timer is failed with aCancellationException.- Returns:
truewhen the future was cancelled and the timeout didn't fire.
-
-