trait RTS extends AnyRef
This trait provides a high-performance implementation of a runtime system for
the IO monad on the JVM.
- Alphabetic
- By Inheritance
- RTS
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
val
YieldMaxOpCount: Int
Determines the maximum number of operations executed by a fiber before yielding to other fibers.
Determines the maximum number of operations executed by a fiber before yielding to other fibers.
FIXME: Replace this entirely with the new scheme.
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
def
defaultHandler: (Cause[Any]) ⇒ IO[Nothing, Unit]
The default handler for unhandled exceptions in the main fiber, and any fibers it forks that recursively inherit the handler.
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
lazy val
executionContext: ExecutionContextExecutor
The fiber's execution context.
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
nonFatal(t: Throwable): Boolean
Utility function to avoid catching truly fatal exceptions.
Utility function to avoid catching truly fatal exceptions. Do not allocate memory here since this would defeat the point of checking for OOME.
- Attributes
- protected
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def schedule[E, A](block: ⇒ A, duration: Duration): Async[E, Unit]
-
lazy val
scheduledExecutor: ScheduledExecutorService
The thread pool for scheduling timed tasks.
- final def submit[A](block: ⇒ A): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
val
threadPool: ExecutorService
The main thread pool used for executing fibers.
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
unsafeRun[E, A](io: IO[E, A]): A
Effectfully and synchronously interprets an
IO[E, A], either throwing an error, running forever, or producing anA. - final def unsafeRunAsync[E, A](io: IO[E, A])(k: Callback[E, A]): Unit
-
final
def
unsafeRunSync[E, A](io: IO[E, A]): ExitResult[E, A]
Effectfully interprets an
IO, blocking if necessary to obtain the result. - final def unsafeShutdownAndWait(timeout: Duration): Unit
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )