Packages

c

akka.japi.pf

FSMStopBuilder

class FSMStopBuilder[S, D] extends AnyRef

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

Source
FSMStopBuilder.java
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. FSMStopBuilder
  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. All

Instance Constructors

  1. new FSMStopBuilder()

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 FSMStopBuilder[S, D] to any2stringadd[FSMStopBuilder[S, D]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (FSMStopBuilder[S, D], B)
    Implicit
    This member is added by an implicit conversion from FSMStopBuilder[S, D] to ArrowAssoc[FSMStopBuilder[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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def build(): PartialFunction[StopEvent[S, D], BoxedUnit]

    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.

  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  9. def ensuring(cond: (FSMStopBuilder[S, D]) ⇒ Boolean, msg: ⇒ Any): FSMStopBuilder[S, D]
    Implicit
    This member is added by an implicit conversion from FSMStopBuilder[S, D] to Ensuring[FSMStopBuilder[S, D]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: (FSMStopBuilder[S, D]) ⇒ Boolean): FSMStopBuilder[S, D]
    Implicit
    This member is added by an implicit conversion from FSMStopBuilder[S, D] to Ensuring[FSMStopBuilder[S, D]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean, msg: ⇒ Any): FSMStopBuilder[S, D]
    Implicit
    This member is added by an implicit conversion from FSMStopBuilder[S, D] to Ensuring[FSMStopBuilder[S, D]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean): FSMStopBuilder[S, D]
    Implicit
    This member is added by an implicit conversion from FSMStopBuilder[S, D] to Ensuring[FSMStopBuilder[S, D]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from FSMStopBuilder[S, D] to StringFormat[FSMStopBuilder[S, D]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. def stop[P <: Reason](reasonType: Class[P], predicate: TypedPredicate[P], apply: UnitApply3[P, S, D]): FSMStopBuilder[S, D]

    Add a case statement that matches on a reason type and a predicate.

    Add a case statement that matches on a reason type and a predicate.

    reasonType

    the reason type to match on

    predicate

    a predicate that will be evaluated on the reason if the type matches

    apply

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

    returns

    the builder with the case statement added

  23. def stop[P <: Reason](reasonType: Class[P], apply: UnitApply3[P, S, D]): FSMStopBuilder[S, D]

    Add a case statement that matches on a reason type.

    Add a case statement that matches on a reason type.

    reasonType

    the reason type to match on

    apply

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

    returns

    the builder with the case statement added

  24. def stop(reason: Reason, apply: UnitApply2[S, D]): FSMStopBuilder[S, D]

    Add a case statement that matches on an FSM.Reason.

    Add a case statement that matches on an FSM.Reason.

    reason

    the reason for the termination

    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 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( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. def [B](y: B): (FSMStopBuilder[S, D], B)
    Implicit
    This member is added by an implicit conversion from FSMStopBuilder[S, D] to ArrowAssoc[FSMStopBuilder[S, D]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Deprecated Value Members

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

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from FSMStopBuilder[S, D] to any2stringadd[FSMStopBuilder[S, D]]

Inherited by implicit conversion StringFormat from FSMStopBuilder[S, D] to StringFormat[FSMStopBuilder[S, D]]

Inherited by implicit conversion Ensuring from FSMStopBuilder[S, D] to Ensuring[FSMStopBuilder[S, D]]

Inherited by implicit conversion ArrowAssoc from FSMStopBuilder[S, D] to ArrowAssoc[FSMStopBuilder[S, D]]

Ungrouped