Package akka.remote.transport
Class ActorTransportAdapter
- java.lang.Object
-
- akka.remote.transport.AbstractTransportAdapter
-
- akka.remote.transport.ActorTransportAdapter
-
- All Implemented Interfaces:
SchemeAugmenter
,Transport
- Direct Known Subclasses:
ThrottlerTransportAdapter
public abstract class ActorTransportAdapter extends AbstractTransportAdapter
Deprecated.Classic remoting is deprecated, use Artery. Since 2.6.0.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ActorTransportAdapter.AssociateUnderlying
Deprecated.static class
ActorTransportAdapter.AssociateUnderlying$
Deprecated.static class
ActorTransportAdapter.DisassociateUnderlying
Deprecated.static class
ActorTransportAdapter.DisassociateUnderlying$
Deprecated.static class
ActorTransportAdapter.ListenerRegistered
Deprecated.static class
ActorTransportAdapter.ListenerRegistered$
Deprecated.static class
ActorTransportAdapter.ListenUnderlying
Deprecated.static class
ActorTransportAdapter.ListenUnderlying$
Deprecated.static interface
ActorTransportAdapter.TransportOperation
Deprecated.-
Nested classes/interfaces inherited from interface akka.remote.transport.Transport
Transport.ActorAssociationEventListener, Transport.ActorAssociationEventListener$, Transport.AssociationEvent, Transport.AssociationEventListener, Transport.InboundAssociation, Transport.InboundAssociation$, Transport.InvalidAssociationException, Transport.InvalidAssociationException$
-
-
Constructor Summary
Constructors Constructor Description ActorTransportAdapter(Transport wrappedTransport, ActorSystem system)
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Timeout
AskTimeout()
Deprecated.void
interceptAssociate(Address remoteAddress, scala.concurrent.Promise<AssociationHandle> statusPromise)
Deprecated.scala.concurrent.Future<Transport.AssociationEventListener>
interceptListen(Address listenAddress, scala.concurrent.Future<Transport.AssociationEventListener> listenerPromise)
Deprecated.protected ActorRef
manager()
Deprecated.protected void
manager_$eq(ActorRef x$1)
Deprecated.protected abstract java.lang.String
managerName()
Deprecated.protected abstract Props
managerProps()
Deprecated.scala.concurrent.Future<java.lang.Object>
shutdown()
Deprecated.Shuts down the transport layer and releases all the corresponding resources.-
Methods inherited from class akka.remote.transport.AbstractTransportAdapter
associate, ec, isResponsibleFor, listen, maximumOverhead, maximumPayloadBytes, schemeIdentifier, wrappedTransport
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface akka.remote.transport.SchemeAugmenter
addedSchemeIdentifier, augmentScheme, augmentScheme, removeScheme, removeScheme
-
Methods inherited from interface akka.remote.transport.Transport
managementCommand
-
-
-
-
Constructor Detail
-
ActorTransportAdapter
public ActorTransportAdapter(Transport wrappedTransport, ActorSystem system)
Deprecated.
-
-
Method Detail
-
AskTimeout
public static Timeout AskTimeout()
Deprecated.
-
managerName
protected abstract java.lang.String managerName()
Deprecated.
-
managerProps
protected abstract Props managerProps()
Deprecated.
-
manager
protected ActorRef manager()
Deprecated.
-
manager_$eq
protected void manager_$eq(ActorRef x$1)
Deprecated.
-
interceptListen
public scala.concurrent.Future<Transport.AssociationEventListener> interceptListen(Address listenAddress, scala.concurrent.Future<Transport.AssociationEventListener> listenerPromise)
Deprecated.- Specified by:
interceptListen
in classAbstractTransportAdapter
-
interceptAssociate
public void interceptAssociate(Address remoteAddress, scala.concurrent.Promise<AssociationHandle> statusPromise)
Deprecated.- Specified by:
interceptAssociate
in classAbstractTransportAdapter
-
shutdown
public scala.concurrent.Future<java.lang.Object> shutdown()
Deprecated.Description copied from interface:Transport
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.
- Specified by:
shutdown
in interfaceTransport
- Overrides:
shutdown
in classAbstractTransportAdapter
- Returns:
- Future signalling the completion of shutdown
-
-