Packages

object Scenario

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Scenario
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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. def done[F[_]]: Scenario[F, Unit]

    Unit value lifted to Scenario context with effect F.

  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  9. def eval[F[_], A](fa: F[A]): Scenario[F, A]

    Suspends an effectful value of type A into Scenario context.

    Suspends an effectful value of type A into Scenario context.

    Generally used for describing bot part of a scenario (e.g. sending messages, making calls to external APIs, etc.)

  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. implicit def functionKInstance[F[_]]: ~>[F, [β$3$]Scenario[F, β$3$]]
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. implicit def monadErrorInstance[F[_]]: MonadError[[β$0$]Scenario[F, β$0$], Throwable]
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def next[F[_], A](pf: PartialFunction[TelegramMessage, A]): Scenario[F, A]

    Defines following step of the scenario.

    Defines following step of the scenario.

    If the first elements belongs to the pf domain, it is going to be matched and transformed into the value of type A using pf .

  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def pure[F[_], A](a: A): Scenario[F, A]

    Lifts pure value to Scenario context.

  21. def raiseError[F[_]](e: Throwable): Scenario[F, Nothing]

    Lifts error value to the Scenario context.

    Lifts error value to the Scenario context.

    Error can be safely brought back to the return value domain using attempt method. It also can be handled using various methods from MonadError such as handleErrorWith, recover etc.

    returns

    Scenario which fails with e

  22. def start[F[_], A](pf: PartialFunction[TelegramMessage, A]): Scenario[F, A]

    Defines the beginning of the scenario.

    Defines the beginning of the scenario.

    Each input value from pf domain is going to be matched and transformed into a value of type A.

  23. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped