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()
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FSMStateFunctionBuilder
  2. AnyRef
  3. Any
  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. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. 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

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. 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.

  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. 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

  11. 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

  12. 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

  13. 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

  14. 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

  15. 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

  16. 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

  17. 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

  18. 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

  19. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  25. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  29. 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)

Inherited from AnyRef

Inherited from Any

Ungrouped