Apache Pekko 2.0.0-M3+222-b197663b-SNAPSHOT - org.apache.pekko.remote.testconductor.Player.Waiter Apache Pekko2.0.0-M3+222-b197663b-SNAPSHOT < Back  Packages  package root Definition Classesroot  package org Definition Classesroot  package apache Definition Classesorg  package pekko Definition Classesapache  package remote Definition Classespekko  package testconductor Definition Classesremote  object Player Definition Classestestconductor Waiter c org.apache.pekko.remote.testconductor.PlayerWaiterfinal class Waiter extends Actor with RequiresMessageQueue[UnboundedMessageQueueSemantics] SourcePlayer.scala Linear Supertypes RequiresMessageQueue[UnboundedMessageQueueSemantics], Actor, AnyRef, Any Type Hierarchy  Ordering Alphabetic By Inheritance Inherited Waiter RequiresMessageQueue Actor AnyRef Any Implicitly by any2stringadd by StringFormat by Ensuring by ArrowAssoc Hide All Show All Visibility Public Protected Instance Constructors  new Waiter() Type Members  type Receive = PartialFunction[Any, Unit] Definition ClassesActor Value Members  final def !=(arg0: Any): Boolean Definition ClassesAnyRef → Any  final def ##: Int Definition ClassesAnyRef → Any  def +(other: String): String ImplicitThis member is added by an implicit conversion from Waiter toany2stringadd[Waiter] performed by method any2stringadd in scala.Predef.Definition Classesany2stringadd  def ->[B](y: B): (Waiter, B) ImplicitThis member is added by an implicit conversion from Waiter toArrowAssoc[Waiter] performed by method ArrowAssoc in scala.Predef.Definition ClassesArrowAssocAnnotations@inline()  final def ==(arg0: Any): Boolean Definition ClassesAnyRef → Any  def aroundPostRestart(reason: Throwable): Unit INTERNAL API. INTERNAL API. Can be overridden to intercept calls to postRestart. Calls postRestart by default. Attributesprotected[pekko] Definition ClassesActorAnnotations@InternalApi()  def aroundPostStop(): Unit INTERNAL API. INTERNAL API. Can be overridden to intercept calls to postStop. Calls postStop by default. Attributesprotected[pekko] Definition ClassesActorAnnotations@InternalApi()  def aroundPreRestart(reason: Throwable, message: Option[Any]): Unit INTERNAL API. INTERNAL API. Can be overridden to intercept calls to preRestart. Calls preRestart by default. Attributesprotected[pekko] Definition ClassesActorAnnotations@InternalApi()  def aroundPreStart(): Unit INTERNAL API. INTERNAL API. Can be overridden to intercept calls to preStart. Calls preStart by default. Attributesprotected[pekko] Definition ClassesActorAnnotations@InternalApi()  def aroundReceive(receive: actor.Actor.Receive, msg: Any): Unit INTERNAL API. INTERNAL API. Can be overridden to intercept calls to this actor's current behavior. receive current behavior.msg current message.Attributesprotected[pekko] Definition ClassesActorAnnotations@InternalApi()  final def asInstanceOf[T0]: T0 Definition ClassesAny  def clone(): AnyRef Attributesprotected[lang] Definition ClassesAnyRefAnnotations@throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()  implicit val context: ActorContext Scala API: Stores the context for this actor, including self, and sender. Scala API: Stores the context for this actor, including self, and sender. It is implicit to support operations such as forward. WARNING: Only valid within the Actor itself, so do not close over it and publish it to other threads! pekko.actor.ActorContext is the Scala API. getContext returns a pekko.actor.AbstractActor.ActorContext, which is the Java API of the actor context. Definition ClassesActor  def ensuring(cond: (Waiter) => Boolean, msg: => Any): Waiter ImplicitThis member is added by an implicit conversion from Waiter toEnsuring[Waiter] performed by method Ensuring in scala.Predef.Definition ClassesEnsuring  def ensuring(cond: (Waiter) => Boolean): Waiter ImplicitThis member is added by an implicit conversion from Waiter toEnsuring[Waiter] performed by method Ensuring in scala.Predef.Definition ClassesEnsuring  def ensuring(cond: Boolean, msg: => Any): Waiter ImplicitThis member is added by an implicit conversion from Waiter toEnsuring[Waiter] performed by method Ensuring in scala.Predef.Definition ClassesEnsuring  def ensuring(cond: Boolean): Waiter ImplicitThis member is added by an implicit conversion from Waiter toEnsuring[Waiter] performed by method Ensuring in scala.Predef.Definition ClassesEnsuring  final def eq(arg0: AnyRef): Boolean Definition ClassesAnyRef  def equals(arg0: AnyRef): Boolean Definition ClassesAnyRef → Any  final def getClass(): Class[_ <: AnyRef] Definition ClassesAnyRef → AnyAnnotations@IntrinsicCandidate() @native()  def hashCode(): Int Definition ClassesAnyRef → AnyAnnotations@IntrinsicCandidate() @native()  final def isInstanceOf[T0]: Boolean Definition ClassesAny  final def ne(arg0: AnyRef): Boolean Definition ClassesAnyRef  final def notify(): Unit Definition ClassesAnyRefAnnotations@IntrinsicCandidate() @native()  final def notifyAll(): Unit Definition ClassesAnyRefAnnotations@IntrinsicCandidate() @native()  def postRestart(reason: Throwable): Unit User overridable callback: By default it calls preStart(). User overridable callback: By default it calls preStart().reason the Throwable that caused the restart to happen Is called right AFTER restart on the newly created Actor to allow reinitialization after an Actor crash.Definition ClassesActorAnnotations@throws(classOf[Exception])  def postStop(): Unit User overridable callback. User overridable callback. Is called asynchronously after 'actor.stop()' is invoked. Empty default implementation. Definition ClassesActorAnnotations@throws(classOf[Exception])  def preRestart(reason: Throwable, message: Option[Any]): Unit Scala API: User overridable callback: By default it disposes of all children and then calls postStop(). Scala API: User overridable callback: By default it disposes of all children and then calls postStop().reason the Throwable that caused the restart to happenmessage optionally the current message the actor processed when failing, if applicable Is called on a crashed Actor right BEFORE it is restarted to allow clean up of resources before Actor is terminated.Definition ClassesActorAnnotations@throws(classOf[Exception])  def preStart(): Unit User overridable callback. User overridable callback. Is called when an Actor is started. Actors are automatically started asynchronously when created. Empty default implementation. Definition ClassesActorAnnotations@throws(classOf[Exception])  def receive: PartialFunction[Any, Unit] Scala API: This defines the initial actor behavior, it must return a partial function with the actor logic. Scala API: This defines the initial actor behavior, it must return a partial function with the actor logic. Definition ClassesWaiter → Actor  implicit final val self: ActorRef The 'self' field holds the ActorRef for this actor. The 'self' field holds the ActorRef for this actor. Can be used to send messages to itself: self ! message Definition ClassesActor  final def sender(): ActorRef The reference sender Actor of the last received message. The reference sender Actor of the last received message. Is defined if the message was sent from another Actor, else deadLetters in pekko.actor.ActorSystem. WARNING: Only valid within the Actor itself, so do not close over it and publish it to other threads! Definition ClassesActor  def supervisorStrategy: SupervisorStrategy User overridable definition the strategy to use for supervising child actors. User overridable definition the strategy to use for supervising child actors. Definition ClassesActor  final def synchronized[T0](arg0: => T0): T0 Definition ClassesAnyRef  def toString(): String Definition ClassesAnyRef → Any  def unhandled(message: Any): Unit User overridable callback. User overridable callback. Is called when a message isn't handled by the current behavior of the actor by default it fails with either a pekko.actor.DeathPactException (in case of an unhandled pekko.actor.Terminated message) or publishes a pekko.actor.UnhandledMessage to the actor's system's pekko.event.EventStream Definition ClassesActor  final def wait(arg0: Long, arg1: Int): Unit Definition ClassesAnyRefAnnotations@throws(classOf[java.lang.InterruptedException])  final def wait(arg0: Long): Unit Definition ClassesAnyRefAnnotations@throws(classOf[java.lang.InterruptedException]) @native()  final def wait(): Unit Definition ClassesAnyRefAnnotations@throws(classOf[java.lang.InterruptedException])  var waiting: ActorRef Deprecated Value Members  def finalize(): Unit Attributesprotected[lang] Definition ClassesAnyRefAnnotations@throws(classOf[java.lang.Throwable]) @Deprecated Deprecated (Since version 9)  def formatted(fmtstr: String): String ImplicitThis member is added by an implicit conversion from Waiter toStringFormat[Waiter] performed by method StringFormat in scala.Predef.Definition ClassesStringFormatAnnotations@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.  def →[B](y: B): (Waiter, B) ImplicitThis member is added by an implicit conversion from Waiter toArrowAssoc[Waiter] performed by method ArrowAssoc in scala.Predef.Definition ClassesArrowAssocAnnotations@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 RequiresMessageQueue[UnboundedMessageQueueSemantics] Inherited from Actor Inherited from AnyRef Inherited from Any Inherited by implicit conversion any2stringadd fromWaiter to any2stringadd[Waiter] Inherited by implicit conversion StringFormat fromWaiter to StringFormat[Waiter] Inherited by implicit conversion Ensuring fromWaiter to Ensuring[Waiter] Inherited by implicit conversion ArrowAssoc fromWaiter to ArrowAssoc[Waiter] Ungrouped