trait App extends RTS
The entry point for a purely-functional application on the JVM.
import java.io.IOException import scalaz.zio.{App, IO} import scalaz.zio.console._ object MyApp extends App { def run(args: List[String]): IO[Nothing, ExitStatus] = myAppLogic.attempt.map(_.fold(_ => 1, _ => 0)).map(ExitStatus.ExitNow(_)) def myAppLogic: IO[IOException, Unit] = for { _ <- putStrLn("Hello! What is your name?") n <- getStrLn _ <- putStrLn("Hello, " + n + ", good to meet you!") } yield () }
- Alphabetic
- By Inheritance
- App
- RTS
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- sealed abstract class ExitStatus extends Serializable with Product
Abstract Value Members
-
abstract
def
run(args: List[String]): IO[Nothing, ExitStatus]
The main function of the application, which will be passed the command-line arguments to the program and has to return an
IOwith the errors fully handled.
Concrete 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.
- Definition Classes
- RTS
-
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.
The default handler for unhandled exceptions in the main fiber, and any fibers it forks that recursively inherit the handler.
- Definition Classes
- RTS
-
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.
The fiber's execution context.
- Definition Classes
- RTS
-
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
main(args0: Array[String]): Unit
The Scala main function, intended to be called only by the Scala runtime.
-
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
- Definition Classes
- RTS
-
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]
- Definition Classes
- RTS
-
lazy val
scheduledExecutor: ScheduledExecutorService
The thread pool for scheduling timed tasks.
The thread pool for scheduling timed tasks.
- Definition Classes
- RTS
-
final
def
submit[A](block: ⇒ A): Unit
- Definition Classes
- RTS
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
val
threadPool: ExecutorService
The main thread pool used for executing fibers.
The main thread pool used for executing fibers.
- Definition Classes
- RTS
-
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.Effectfully and synchronously interprets an
IO[E, A], either throwing an error, running forever, or producing anA.- Definition Classes
- RTS
-
final
def
unsafeRunAsync[E, A](io: IO[E, A])(k: Callback[E, A]): Unit
- Definition Classes
- RTS
-
final
def
unsafeRunSync[E, A](io: IO[E, A]): ExitResult[E, A]
Effectfully interprets an
IO, blocking if necessary to obtain the result.Effectfully interprets an
IO, blocking if necessary to obtain the result.- Definition Classes
- RTS
-
final
def
unsafeShutdownAndWait(timeout: Duration): Unit
- Definition Classes
- RTS
-
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( ... )
- object ExitStatus extends Serializable