Packages

c

akka.japi.pf

FSMStateFunctionBuilder

class FSMStateFunctionBuilder[S, D] extends AnyRef

Builder used to create a partial function for akka.actor.FSM#whenUnhandled.

Annotations
@SuppressWarnings()
Source
FSMStateFunctionBuilder.java
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FSMStateFunctionBuilder
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new FSMStateFunctionBuilder()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from FSMStateFunctionBuilder[S, D] toany2stringadd[FSMStateFunctionBuilder[S, D]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (FSMStateFunctionBuilder[S, D], B)
    Implicit
    This member is added by an implicit conversion from FSMStateFunctionBuilder[S, D] toArrowAssoc[FSMStateFunctionBuilder[S, D]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def anyEvent(apply: Apply2[AnyRef, D, State[S, D]]): FSMStateFunctionBuilder[S, D]

    Add a case statement that matches on any type of event.

    Add a case statement that matches on any type of event.

    apply

    an action to apply to the event and state data

    returns

    the builder with the case statement added

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def build(): PartialFunction[Event[D], State[S, D]]

    Build a scala.PartialFunction from this builder.

    Build a scala.PartialFunction from this builder. After this call the builder will be reset.

    returns

    a PartialFunction for this builder.

  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  10. def ensuring(cond: (FSMStateFunctionBuilder[S, D]) => Boolean, msg: => Any): FSMStateFunctionBuilder[S, D]
    Implicit
    This member is added by an implicit conversion from FSMStateFunctionBuilder[S, D] toEnsuring[FSMStateFunctionBuilder[S, D]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (FSMStateFunctionBuilder[S, D]) => Boolean): FSMStateFunctionBuilder[S, D]
    Implicit
    This member is added by an implicit conversion from FSMStateFunctionBuilder[S, D] toEnsuring[FSMStateFunctionBuilder[S, D]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: => Any): FSMStateFunctionBuilder[S, D]
    Implicit
    This member is added by an implicit conversion from FSMStateFunctionBuilder[S, D] toEnsuring[FSMStateFunctionBuilder[S, D]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): FSMStateFunctionBuilder[S, D]
    Implicit
    This member is added by an implicit conversion from FSMStateFunctionBuilder[S, D] toEnsuring[FSMStateFunctionBuilder[S, D]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. def event(eventMatches: List[AnyRef], apply: Apply2[AnyRef, D, State[S, D]]): FSMStateFunctionBuilder[S, D]

    Add a case statement that matches if any of the event types in the list match or any of the event instances in the list compares equal.

    Add a case statement that matches if any of the event types in the list match or any of the event instances in the list compares equal.

    eventMatches

    a list of types or instances to match against

    apply

    an action to apply to the event and state data if there is a match

    returns

    the builder with the case statement added

  17. def event[Q](eventMatches: List[AnyRef], dataType: Class[Q], apply: Apply2[AnyRef, Q, State[S, D]]): FSMStateFunctionBuilder[S, D]

    Add a case statement that matches on the data type and if any of the event types in the list match or any of the event instances in the list compares equal.

    Add a case statement that matches on the data type and if any of the event types in the list match or any of the event instances in the list compares equal.

    eventMatches

    a list of types or instances to match against

    dataType

    the data type to match on

    apply

    an action to apply to the event and state data if there is a match

    returns

    the builder with the case statement added

  18. def event(predicate: TypedPredicate2[AnyRef, D], apply: Apply2[AnyRef, D, State[S, D]]): FSMStateFunctionBuilder[S, D]

    Add a case statement that matches if the predicate matches.

    Add a case statement that matches if the predicate matches.

    predicate

    a predicate that will be evaluated on the data and the event

    apply

    an action to apply to the event and state data if there is a match

    returns

    the builder with the case statement added

  19. def event[P](eventType: Class[P], apply: Apply2[P, D, State[S, D]]): FSMStateFunctionBuilder[S, D]

    Add a case statement that matches if the event type and predicate matches.

    Add a case statement that matches if the event type and predicate matches.

    eventType

    the event type to match on

    apply

    an action to apply to the event and state data if there is a match

    returns

    the builder with the case statement added

  20. def event[P](eventType: Class[P], predicate: TypedPredicate2[P, D], apply: Apply2[P, D, State[S, D]]): FSMStateFunctionBuilder[S, D]

    Add a case statement that matches if the event type and predicate matches.

    Add a case statement that matches if the event type and predicate matches.

    eventType

    the event type to match on

    predicate

    a predicate that will be evaluated on the data and the event

    apply

    an action to apply to the event and state data if there is a match

    returns

    the builder with the case statement added

  21. def event[P, Q](eventType: Class[P], dataType: Class[Q], apply: Apply2[P, Q, State[S, D]]): FSMStateFunctionBuilder[S, D]

    Add a case statement that matches on an event and data type.

    Add a case statement that matches on an event and data type.

    eventType

    the event type to match on

    dataType

    the data type to match on

    apply

    an action to apply to the event and state data if there is a match

    returns

    the builder with the case statement added

  22. final def event[P, Q](eventType: Class[P], dataType: Class[Q], predicate: TypedPredicate2[P, Q], apply: Apply2[P, Q, State[S, D]]): FSMStateFunctionBuilder[S, D]

    Add a case statement that matches on an event and data type and a predicate.

    Add a case statement that matches on an event and data type and a predicate.

    eventType

    the event type to match on

    dataType

    the data type to match on

    predicate

    a predicate to evaluate on the matched types

    apply

    an action to apply to the event and state data if there is a match

    returns

    the builder with the case statement added

  23. def eventEquals[P](event: P, apply: Apply2[P, D, State[S, D]]): FSMStateFunctionBuilder[S, D]

    Add a case statement that matches if event compares equal.

    Add a case statement that matches if event compares equal.

    event

    an event to compare equal against

    apply

    an action to apply to the event and state data if there is a match

    returns

    the builder with the case statement added

  24. def eventEquals[P, Q](event: P, dataType: Class[Q], apply: Apply2[P, Q, State[S, D]]): FSMStateFunctionBuilder[S, D]

    Add a case statement that matches on the data type and if the event compares equal.

    Add a case statement that matches on the data type and if the event compares equal.

    event

    an event to compare equal against

    dataType

    the data type to match on

    apply

    an action to apply to the event and state data if there is a match

    returns

    the builder with the case statement added

  25. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  27. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  31. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from FSMStateFunctionBuilder[S, D] toStringFormat[FSMStateFunctionBuilder[S, D]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (FSMStateFunctionBuilder[S, D], B)
    Implicit
    This member is added by an implicit conversion from FSMStateFunctionBuilder[S, D] toArrowAssoc[FSMStateFunctionBuilder[S, D]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromFSMStateFunctionBuilder[S, D] to any2stringadd[FSMStateFunctionBuilder[S, D]]

Inherited by implicit conversion StringFormat fromFSMStateFunctionBuilder[S, D] to StringFormat[FSMStateFunctionBuilder[S, D]]

Inherited by implicit conversion Ensuring fromFSMStateFunctionBuilder[S, D] to Ensuring[FSMStateFunctionBuilder[S, D]]

Inherited by implicit conversion ArrowAssoc fromFSMStateFunctionBuilder[S, D] to ArrowAssoc[FSMStateFunctionBuilder[S, D]]

Ungrouped