C# Класс NServiceBus.Transport.TransportInfrastructure

Transport infrastructure definitions.
Показать файл Открыть проект

Открытые методы

Метод Описание
BindToLocalEndpoint ( EndpointInstance instance ) : EndpointInstance

Returns the discriminator for this endpoint instance.

ConfigureReceiveInfrastructure ( ) : TransportReceiveInfrastructure

Gets the factories to receive message.

ConfigureSendInfrastructure ( ) : TransportSendInfrastructure

Gets the factories to send message.

ConfigureSubscriptionInfrastructure ( ) : TransportSubscriptionInfrastructure

Gets the factory to manage subscriptions.

MakeCanonicalForm ( string transportAddress ) : string

Returns the canonical for of the given transport address so various transport addresses can be effectively compared and de-duplicated.

Start ( ) : Task

Performs any action required to warm up the transport infrastructure before starting the endpoint.

Stop ( ) : Task

Performs any action required to cool down the transport infrastructure when the endpoint is stopping.

ToTransportAddress ( LogicalAddress logicalAddress ) : string

Converts a given logical address to the transport address.

Описание методов

BindToLocalEndpoint() публичный абстрактный Метод

Returns the discriminator for this endpoint instance.
public abstract BindToLocalEndpoint ( EndpointInstance instance ) : EndpointInstance
instance EndpointInstance
Результат EndpointInstance

ConfigureReceiveInfrastructure() публичный абстрактный Метод

Gets the factories to receive message.
public abstract ConfigureReceiveInfrastructure ( ) : TransportReceiveInfrastructure
Результат TransportReceiveInfrastructure

ConfigureSendInfrastructure() публичный абстрактный Метод

Gets the factories to send message.
public abstract ConfigureSendInfrastructure ( ) : TransportSendInfrastructure
Результат TransportSendInfrastructure

ConfigureSubscriptionInfrastructure() публичный абстрактный Метод

Gets the factory to manage subscriptions.
public abstract ConfigureSubscriptionInfrastructure ( ) : TransportSubscriptionInfrastructure
Результат TransportSubscriptionInfrastructure

MakeCanonicalForm() публичный Метод

Returns the canonical for of the given transport address so various transport addresses can be effectively compared and de-duplicated.
public MakeCanonicalForm ( string transportAddress ) : string
transportAddress string A transport address.
Результат string

Start() публичный Метод

Performs any action required to warm up the transport infrastructure before starting the endpoint.
public Start ( ) : Task
Результат Task

Stop() публичный Метод

Performs any action required to cool down the transport infrastructure when the endpoint is stopping.
public Stop ( ) : Task
Результат Task

ToTransportAddress() публичный абстрактный Метод

Converts a given logical address to the transport address.
public abstract ToTransportAddress ( LogicalAddress logicalAddress ) : string
logicalAddress LogicalAddress The logical address.
Результат string