|
Module AsyncThis module is undocumented. This is a list of its definitions. DAYS :: TimeUnit Days. HOURS :: TimeUnit Hours. MICROSECONDS :: TimeUnit Microseconds. MILLISECONDS :: TimeUnit Milliseconds. NANOSECONDS :: TimeUnit Nanoseconds. SECONDS :: TimeUnit Seconds. pmap :: (a -> <Proc> b) -> [a] -> <Proc> [b] Like runAsync :: <Proc> a -> <Proc> () Executes the given expression in a background thread and returns immediately. The thread gets a derived copy of the current SCL context. An exception thrown by the expression is logged, not propagated to the caller. schedule :: <Proc> a -> Long -> TimeUnit -> <Proc> Future a
scheduleAtFixedRate :: <Proc> a -> Long -> Long -> TimeUnit -> <Proc> Future a
scheduleWithFixedDelay :: <Proc> a -> Long -> Long -> TimeUnit -> <Proc> Future a
|