Package io.vertx.rxjava.core
Class Timer
- java.lang.Object
-
- io.vertx.rxjava.core.Timer
-
- All Implemented Interfaces:
RxDelegate
public class Timer extends Object implements RxDelegate
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 theoriginal
non 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 boolean
cancel()
Attempt to cancel the timer task, when the timer is cancelled, the timer is failed with aCancellationException
.boolean
equals(Object o)
Timer
getDelegate()
int
hashCode()
static Timer
newInstance(Timer arg)
String
toString()
-
-
-
Method Detail
-
getDelegate
public Timer getDelegate()
- Specified by:
getDelegate
in interfaceRxDelegate
-
cancel
public boolean cancel()
Attempt to cancel the timer task, when the timer is cancelled, the timer is failed with aCancellationException
.- Returns:
true
when the future was cancelled and the timeout didn't fire.
-
-