Transport

@deprecated("Classic remoting is deprecated, use Artery", "2.6.0")
object Transport
Companion:
class
Deprecated
Source:
Transport.scala
class Object
trait Matchable
class Any

Type members

Classlikes

Class to convert ordinary akka.actor.ActorRef instances to an AssociationEventListener. The adapter will forward event objects as messages to the provided ActorRef.

Class to convert ordinary akka.actor.ActorRef instances to an AssociationEventListener. The adapter will forward event objects as messages to the provided ActorRef.

Source:
Transport.scala

An interface that needs to be implemented by the user of a transport to listen to association events

An interface that needs to be implemented by the user of a transport to listen to association events

Source:
Transport.scala
final case class InboundAssociation(association: AssociationHandle) extends AssociationEvent

Message sent to a akka.remote.transport.Transport.AssociationEventListener registered to a transport (via the Promise returned by akka.remote.transport.Transport#listen) when an inbound association request arrives.

Message sent to a akka.remote.transport.Transport.AssociationEventListener registered to a transport (via the Promise returned by akka.remote.transport.Transport#listen) when an inbound association request arrives.

Value parameters:
association

The handle for the inbound association.

Source:
Transport.scala
final case class InvalidAssociationException(msg: String, cause: Throwable) extends AkkaException with NoStackTrace

Indicates that the association setup request is invalid, and it is impossible to recover (malformed IP address, hostname, etc.).

Indicates that the association setup request is invalid, and it is impossible to recover (malformed IP address, hostname, etc.).

Source:
Transport.scala