object AssociationHandle
- Annotations
- @deprecated
- Deprecated
(Since version Akka 2.6.0) Classic remoting is deprecated, use Artery
- Source
- Transport.scala
- Alphabetic
- By Inheritance
- AssociationHandle
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- final case class ActorHandleEventListener(actor: ActorRef) extends HandleEventListener with Product with Serializable
Class to convert ordinary pekko.actor.ActorRef instances to a HandleEventListener.
Class to convert ordinary pekko.actor.ActorRef instances to a HandleEventListener. The adapter will forward event objects as messages to the provided ActorRef.
- sealed trait DisassociateInfo extends AnyRef
Supertype of possible disassociation reasons
- final case class Disassociated(info: DisassociateInfo) extends HandleEvent with DeadLetterSuppression with Product with Serializable
Message sent to the listener registered to an association
Message sent to the listener registered to an association
- info
information about the reason of disassociation
- sealed trait HandleEvent extends NoSerializationVerificationNeeded
Trait for events that the registered listener for an pekko.remote.transport.AssociationHandle might receive.
- trait HandleEventListener extends AnyRef
An interface that needs to be implemented by the user of an pekko.remote.transport.AssociationHandle to listen to association events.
- final case class InboundPayload(payload: ByteString) extends HandleEvent with Product with Serializable
Message sent to the listener registered to an association (via the Promise returned by pekko.remote.transport.AssociationHandle#readHandlerPromise) when an inbound payload arrives.
Message sent to the listener registered to an association (via the Promise returned by pekko.remote.transport.AssociationHandle#readHandlerPromise) when an inbound payload arrives.
- payload
The raw bytes that were sent by the remote endpoint.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- 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])
- case object Quarantined extends DisassociateInfo with Product with Serializable
- case object Shutdown extends DisassociateInfo with Product with Serializable
- case object Unknown extends DisassociateInfo with Product with Serializable