Packages

t

monix.eval

TaskApp

trait TaskApp extends AnyRef

Safe App type that runs a Task action.

Clients should implement run, runl, or runc.

Also available for Scala.js, but without the ability to take arguments and without the blocking in main.

Source
TaskApp.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TaskApp
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def main(args: Array[String]): Unit
  2. def run(args: Array[String]): Task[Unit]
  3. def runc: Task[Unit]
  4. def runl(args: List[String]): Task[Unit]