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 () }
- 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
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
lazy val
env: Env
- Definition Classes
- RTS
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
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
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
shutdown(): Unit
- Definition Classes
- RTS
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
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
-
final
def
unsafeRunAsync[E, A](io: IO[E, A])(k: (Exit[E, A]) ⇒ Unit): Unit
Runs the
ioasynchronously.Runs the
ioasynchronously.- Definition Classes
- RTS
-
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
-
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