Uses of Class
io.grpc.SynchronizationContext.ScheduledHandle
Packages that use SynchronizationContext.ScheduledHandle
-
Uses of SynchronizationContext.ScheduledHandle in io.grpc
Methods in io.grpc that return SynchronizationContext.ScheduledHandleModifier and TypeMethodDescriptionSynchronizationContext.schedule
(Runnable task, long delay, TimeUnit unit, ScheduledExecutorService timerService) Schedules a task to be added and run viaSynchronizationContext.execute(java.lang.Runnable)
after a delay.SynchronizationContext.schedule
(Runnable task, Duration delay, ScheduledExecutorService timerService) SynchronizationContext.scheduleWithFixedDelay
(Runnable task, long initialDelay, long delay, TimeUnit unit, ScheduledExecutorService timerService) Schedules a task to be added and run viaSynchronizationContext.execute(java.lang.Runnable)
after an initial delay and then repeated after the delay until cancelled.SynchronizationContext.scheduleWithFixedDelay
(Runnable task, Duration initialDelay, Duration delay, ScheduledExecutorService timerService)