Class ActorTransportAdapter
- java.lang.Object
-
- org.apache.pekko.remote.transport.AbstractTransportAdapter
-
- org.apache.pekko.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 Akka 2.6.0.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classActorTransportAdapter.AssociateUnderlyingDeprecated.static classActorTransportAdapter.AssociateUnderlying$Deprecated.static classActorTransportAdapter.DisassociateUnderlyingDeprecated.static classActorTransportAdapter.DisassociateUnderlying$Deprecated.static classActorTransportAdapter.ListenerRegisteredDeprecated.static classActorTransportAdapter.ListenerRegistered$Deprecated.static classActorTransportAdapter.ListenUnderlyingDeprecated.static classActorTransportAdapter.ListenUnderlying$Deprecated.static interfaceActorTransportAdapter.TransportOperationDeprecated.-
Nested classes/interfaces inherited from interface org.apache.pekko.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 TimeoutAskTimeout()Deprecated.voidinterceptAssociate(Address remoteAddress, scala.concurrent.Promise<AssociationHandle> statusPromise)Deprecated.scala.concurrent.Future<Transport.AssociationEventListener>interceptListen(Address listenAddress, scala.concurrent.Future<Transport.AssociationEventListener> listenerPromise)Deprecated.protected ActorRefmanager()Deprecated.protected voidmanager_$eq(ActorRef x$1)Deprecated.protected abstract java.lang.StringmanagerName()Deprecated.protected abstract PropsmanagerProps()Deprecated.scala.concurrent.Future<java.lang.Object>shutdown()Deprecated.Shuts down the transport layer and releases all the corresponding resources.-
Methods inherited from class org.apache.pekko.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 org.apache.pekko.remote.transport.SchemeAugmenter
addedSchemeIdentifier, augmentScheme, augmentScheme, removeScheme, removeScheme
-
Methods inherited from interface org.apache.pekko.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:
interceptListenin classAbstractTransportAdapter
-
interceptAssociate
public void interceptAssociate(Address remoteAddress, scala.concurrent.Promise<AssociationHandle> statusPromise)
Deprecated.- Specified by:
interceptAssociatein classAbstractTransportAdapter
-
shutdown
public scala.concurrent.Future<java.lang.Object> shutdown()
Deprecated.Description copied from interface:TransportShuts 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:
shutdownin interfaceTransport- Overrides:
shutdownin classAbstractTransportAdapter- Returns:
- Future signalling the completion of shutdown
-
-