Packages

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 {

final 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 ()
}
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. App
  2. RTS
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed abstract class ExitStatus extends Serializable with Product

Abstract Value Members

  1. 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 IO with the errors fully handled.

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. lazy val env: Env
    Definition Classes
    RTS
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def main(args0: Array[String]): Unit

    The Scala main function, intended to be called only by the Scala runtime.

  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def shutdown(): Unit
    Definition Classes
    RTS
  18. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  19. def toString(): String
    Definition Classes
    AnyRef → Any
  20. final def unsafeRun[E, A](io: IO[E, A]): A

    Awaits for the result of the fiber to be computed.

    Awaits for the result of the fiber to be computed. In Javascript, this operation will not, in general, succeed because it is not possible to block for the result. However, it may succeed in some cases if the IO is purely synchronous.

    Definition Classes
    RTS
  21. final def unsafeRunAsync[E, A](io: IO[E, A])(k: (Exit[E, A]) ⇒ Unit): Unit

    Runs the io asynchronously.

    Runs the io asynchronously.

    Definition Classes
    RTS
  22. final def unsafeRunSync[E, A](io: IO[E, A]): Exit[E, A]

    Awaits for the result of the fiber to be computed.

    Awaits for the result of the fiber to be computed. In Javascript, this operation will not, in general, succeed because it is not possible to block for the result. However, it may succeed in some cases if the IO is purely synchronous.

    Definition Classes
    RTS
  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  26. object ExitStatus extends Serializable

Inherited from RTS

Inherited from AnyRef

Inherited from Any

Ungrouped