class FSMStateFunctionBuilder[S, D] extends AnyRef
Builder used to create a partial function for akka.actor.FSM#whenUnhandled.
- Annotations
- @SuppressWarnings()
- Source
- FSMStateFunctionBuilder.java
- Alphabetic
- By Inheritance
- FSMStateFunctionBuilder
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
-  new FSMStateFunctionBuilder()
Value Members
-   final  def !=(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def ##: Int- Definition Classes
- AnyRef → Any
 
-    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
 
-    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()
 
-   final  def ==(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-    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 
 
-   final  def asInstanceOf[T0]: T0- Definition Classes
- Any
 
-    def build(): PartialFunction[Event[D], State[S, D]]Build a scala.PartialFunctionfrom this builder.Build a scala.PartialFunctionfrom this builder. After this call the builder will be reset.- returns
- a PartialFunction for this builder. 
 
-    def clone(): AnyRef- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
 
-    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
 
-    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
 
-    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
 
-    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
 
-   final  def eq(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-    def equals(arg0: AnyRef): Boolean- Definition Classes
- AnyRef → Any
 
-    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 
 
-    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 
 
-    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 
 
-    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 
 
-    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 
 
-    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 
 
-   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 
 
-    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 
 
-    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 
 
-   final  def getClass(): Class[_ <: AnyRef]- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-    def hashCode(): Int- Definition Classes
- AnyRef → Any
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-   final  def isInstanceOf[T0]: Boolean- Definition Classes
- Any
 
-   final  def ne(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-   final  def notify(): Unit- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-   final  def notifyAll(): Unit- Definition Classes
- AnyRef
- Annotations
- @HotSpotIntrinsicCandidate() @native()
 
-   final  def synchronized[T0](arg0: => T0): T0- Definition Classes
- AnyRef
 
-    def toString(): String- Definition Classes
- AnyRef → Any
 
-   final  def wait(arg0: Long, arg1: Int): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-   final  def wait(arg0: Long): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
 
-   final  def wait(): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
Deprecated Value Members
-    def finalize(): Unit- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
- (Since version 9) 
 
-    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,- formattedresolves to the new method in String which has reversed parameters.
 
-    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.