Interface ITransportAdapterProvider
Interface for producing adapters that can wrap an underlying transport and augment it with additional behavior.
Namespace: Akka.Remote.Transport
Assembly: Akka.Remote.dll
Syntax
public interface ITransportAdapterProvider
Methods
| Improve this Doc View SourceCreate(Transport, ExtendedActorSystem)
Create a transport adapter that wraps the underlying transport
Declaration
Transport Create(Transport wrappedTransport, ExtendedActorSystem system)
Parameters
Type | Name | Description |
---|---|---|
Transport | wrappedTransport | The transport that will be wrapped. |
ExtendedActorSystem | system | The actor system to which this transport belongs. |
Returns
Type | Description |
---|---|
Transport | A transport wrapped with the new adapter. |