Timers

kyo.concurrent.timers.Timers
object Timers

Attributes

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

Members list

Value members

Concrete methods

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