Timers

kyo.concurrent.timers$.Timers$
object Timers

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Timers.type

Members list

Concise view

Value members

Concrete methods

def run[T, S](t: Timer)(f: => T > S | Timers): T > S
def run[T, S](f: => T > S | Timers)(using t: Timer): T > S
def schedule(delay: Duration)(f: => Unit > IOs): TimerTask > Timers | IOs
def scheduleAtFixedRate(period: Duration)(f: => Unit > IOs): TimerTask > Timers | IOs
def scheduleAtFixedRate(initialDelay: Duration, period: Duration)(f: => Unit > IOs): TimerTask > Timers | IOs
def scheduleWithFixedDelay(period: Duration)(f: => Unit > IOs): TimerTask > Timers | IOs
def scheduleWithFixedDelay(initialDelay: Duration, period: Duration)(f: => Unit > IOs): TimerTask > Timers | IOs
def shutdown: Unit > Timers | IOs