Uses of Interface
io.vertx.core.Timer
-
Packages that use Timer Package Description io.vertx.core io.vertx.grpc.client io.vertx.grpc.server io.vertx.reactivex.core io.vertx.rxjava3.core -
-
Uses of Timer in io.vertx.core
Methods in io.vertx.core that return Timer Modifier and Type Method Description default Timer
Vertx. timer(long delay)
LikeVertx.timer(long, TimeUnit)
with a unit in millis.default Timer
Vertx. timer(long delay, TimeUnit unit)
Create a timer task configured with the specifieddelay
, when the timeout fires the timer future is succeeded, when the timeout is cancelled the timer future is failed with aCancellationException
instance. -
Uses of Timer in io.vertx.grpc.client
Methods in io.vertx.grpc.client that return Timer Modifier and Type Method Description Timer
GrpcClientRequest. deadline()
-
Uses of Timer in io.vertx.grpc.server
Methods in io.vertx.grpc.server that return Timer Modifier and Type Method Description Timer
GrpcServerRequest. deadline()
-
Uses of Timer in io.vertx.reactivex.core
Methods in io.vertx.reactivex.core that return Timer Modifier and Type Method Description Timer
Timer. getDelegate()
Methods in io.vertx.reactivex.core with parameters of type Timer Modifier and Type Method Description static Timer
Timer. newInstance(Timer arg)
Constructors in io.vertx.reactivex.core with parameters of type Timer Constructor Description Timer(Timer delegate)
-
Uses of Timer in io.vertx.rxjava3.core
Methods in io.vertx.rxjava3.core that return Timer Modifier and Type Method Description Timer
Timer. getDelegate()
Methods in io.vertx.rxjava3.core with parameters of type Timer Modifier and Type Method Description static Timer
Timer. newInstance(Timer arg)
Constructors in io.vertx.rxjava3.core with parameters of type Timer Constructor Description Timer(Timer delegate)
-