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

Type Members

  1. final class PurePartiallyApplied[F[_]] extends AnyVal

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
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  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: AnyRef): 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 action that should be executed by the bot (e.g. sending messages, making calls to external APIs, etc.)

  10. def expect[F[_], A](pf: PartialFunction[TelegramMessage, A]): Scenario[F, A]

    Describes the next expected received message.

    Describes the next expected received message.

    Any input message from pf domain will be matched and transformed into a value of type A.

  11. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. implicit def functionKInstance[F[_]]: ~>[F, [β$3$]Scenario[F, β$3$]]
  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. implicit def monadErrorInstance[F[_]]: MonadError[[β$0$]Scenario[F, β$0$], Throwable]
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def pure[F[_]]: PurePartiallyApplied[F]

    Lifts pure value to Scenario context.

    Lifts pure value to Scenario context.

    Uses partially applied type parameter technique.

  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. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  23. def toString(): String
    Definition Classes
    AnyRef → Any
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped