akka.remote.transport

ThrottlerTransportAdapter

class ThrottlerTransportAdapter extends ActorTransportAdapter

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ThrottlerTransportAdapter
  2. ActorTransportAdapter
  3. AbstractTransportAdapter
  4. SchemeAugmenter
  5. Transport
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ThrottlerTransportAdapter(_wrappedTransport: Transport, _system: ExtendedActorSystem)

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addedSchemeIdentifier: String

    Attributes
    protected
    Definition Classes
    ThrottlerTransportAdapterSchemeAugmenter
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def associate(remoteAddress: Address): Future[AssociationHandle]

    Asynchronously opens a logical duplex link between two Transport Entities over a network.

    Asynchronously opens a logical duplex link between two Transport Entities over a network. It could be backed by a real transport-layer connection (TCP), more lightweight connections provided over datagram protocols (UDP with additional services), substreams of multiplexed connections (SCTP) or physical links (serial port).

    This call returns a future of an akka.remote.transport.AssociationHandle. A failed future indicates that the association attempt was unsuccessful. If the exception is akka.remote.transport.Transport.InvalidAssociationException then the association request was invalid, and it is impossible to recover.

    remoteAddress

    The address of the remote transport entity.

    returns

    A status instance representing failure or a success containing an akka.remote.transport.AssociationHandle

    Definition Classes
    AbstractTransportAdapterTransport
  9. def augmentScheme(address: Address): Address

    Attributes
    protected
    Definition Classes
    SchemeAugmenter
  10. def augmentScheme(originalScheme: String): String

    Attributes
    protected
    Definition Classes
    SchemeAugmenter
  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @throws( ... )
  12. implicit val ec: ExecutionContext

    Definition Classes
    AbstractTransportAdapter
  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate()
  16. def hashCode(): Int

    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate()
  17. def interceptAssociate(remoteAddress: Address, statusPromise: Promise[AssociationHandle]): Unit

  18. def interceptListen(listenAddress: Address, listenerPromise: Future[AssociationEventListener]): Future[AssociationEventListener]

  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def isResponsibleFor(address: Address): Boolean

    A function that decides whether the specific transport instance is responsible for delivering to a given address.

    A function that decides whether the specific transport instance is responsible for delivering to a given address. The function must be thread-safe and non-blocking.

    The purpose of this function is to resolve cases when the scheme part of an URL is not enough to resolve the correct transport i.e. multiple instances of the same transport implementation are loaded. These cases arise when

    • the same transport, but with different configurations is used for different remote systems
    • a transport is able to serve one address only (hardware protocols, e.g. Serial port) and multiple instances are needed to be loaded for different endpoints.
    returns

    whether the transport instance is responsible to serve communications to the given address.

    Definition Classes
    AbstractTransportAdapterTransport
  21. def listen: Future[(Address, Promise[AssociationEventListener])]

    Asynchronously attempts to setup the transport layer to listen and accept incoming associations.

    Asynchronously attempts to setup the transport layer to listen and accept incoming associations. The result of the attempt is wrapped by a Future returned by this method. The pair contained in the future contains a Promise for an ActorRef. By completing this Promise with an akka.remote.transport.Transport.AssociationEventListener, that listener becomes responsible for handling incoming associations. Until the Promise is not completed, no associations are processed.

    returns

    A Future containing a pair of the bound local address and a Promise of an AssociationListener that must be completed by the consumer of the future.

    Definition Classes
    AbstractTransportAdapterTransport
  22. def managementCommand(cmd: Any): Future[Boolean]

    This method allows upper layers to send management commands to the transport.

    This method allows upper layers to send management commands to the transport. It is the responsibility of the sender to send appropriate commands to different transport implementations. Unknown commands will be ignored.

    cmd

    Command message to the transport

    returns

    Future that succeeds when the command was handled or dropped

    Definition Classes
    ThrottlerTransportAdapterTransport
  23. var manager: ActorRef

    Attributes
    protected
    Definition Classes
    ActorTransportAdapter
  24. def managerName: String

    Attributes
    protected
    Definition Classes
    ThrottlerTransportAdapterActorTransportAdapter
  25. def managerProps: Props

    Attributes
    protected
    Definition Classes
    ThrottlerTransportAdapterActorTransportAdapter
  26. def maximumOverhead: Int

    Attributes
    protected
    Definition Classes
    ThrottlerTransportAdapterAbstractTransportAdapter
  27. def maximumPayloadBytes: Int

    Defines the maximum size of payload this transport is able to deliver.

    Defines the maximum size of payload this transport is able to deliver. All transports MUST support at least 32kBytes (32000 octets) of payload, but some MAY support larger sizes.

    returns

    Definition Classes
    AbstractTransportAdapterTransport
  28. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate()
  30. final def notifyAll(): Unit

    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate()
  31. def removeScheme(address: Address): Address

    Attributes
    protected
    Definition Classes
    SchemeAugmenter
  32. def removeScheme(scheme: String): String

    Attributes
    protected
    Definition Classes
    SchemeAugmenter
  33. def schemeIdentifier: String

    Returns a string that will be used as the scheme part of the URLs corresponding to this transport

    Returns a string that will be used as the scheme part of the URLs corresponding to this transport

    returns

    the scheme string

    Definition Classes
    AbstractTransportAdapterTransport
  34. def shutdown(): Future[Boolean]

    Shuts down the transport layer and releases all the corresponding resources.

    Shuts down the transport layer and releases all the corresponding resources. Shutdown is asynchronous signalling the end of the shutdown by completing the returned future.

    The transport SHOULD try flushing pending writes before becoming completely closed.

    returns

    Future signalling the completion of shutdown

    Definition Classes
    ActorTransportAdapterAbstractTransportAdapterTransport
  35. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  36. def toString(): String

    Definition Classes
    AnyRef → Any
  37. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. val wrappedTransport: Transport

    Attributes
    protected
    Definition Classes
    AbstractTransportAdapter

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 ActorTransportAdapter

Inherited from AbstractTransportAdapter

Inherited from SchemeAugmenter

Inherited from Transport

Inherited from AnyRef

Inherited from Any

Ungrouped