Class SchemeAugmenter
Used to augment the protocol scheme of transports when enabled.
Inherited Members
Namespace: Akka.Remote.Transport
Assembly: Akka.Remote.dll
Syntax
public class SchemeAugmenter
Constructors
| Edit this page View SourceSchemeAugmenter(string)
Creates a new SchemeAugmenter instance.
Declaration
public SchemeAugmenter(string addedSchemeIdentifier)
Parameters
| Type | Name | Description |
|---|---|---|
| string | addedSchemeIdentifier | The new identifier that will be added to the front of the pipeline. |
Fields
| Edit this page View SourceAddedSchemeIdentifier
The scheme that will be added to the front of the protocol. I.E. if using a TLS augmentor, the this field might read "ssl" and the full scheme of addresses generated using this transport might read "akka.tcp.ssl", the latter part being added by this augmenter.
Declaration
public readonly string AddedSchemeIdentifier
Field Value
| Type | Description |
|---|---|
| string |
Methods
| Edit this page View SourceAugmentScheme(Address)
TBD
Declaration
public Address AugmentScheme(Address address)
Parameters
| Type | Name | Description |
|---|---|---|
| Address | address | TBD |
Returns
| Type | Description |
|---|---|
| Address | TBD |
AugmentScheme(string)
TBD
Declaration
public string AugmentScheme(string originalScheme)
Parameters
| Type | Name | Description |
|---|---|---|
| string | originalScheme | TBD |
Returns
| Type | Description |
|---|---|
| string | TBD |
RemoveScheme(Address)
TBD
Declaration
public Address RemoveScheme(Address address)
Parameters
| Type | Name | Description |
|---|---|---|
| Address | address | TBD |
Returns
| Type | Description |
|---|---|
| Address | TBD |
RemoveScheme(string)
TBD
Declaration
public string RemoveScheme(string scheme)
Parameters
| Type | Name | Description |
|---|---|---|
| string | scheme | TBD |
Returns
| Type | Description |
|---|---|
| string | TBD |
Edit this page