Table of Contents

Interface ReceiveEndpointHandle

Namespace
MassTransit
Assembly
MassTransit.Abstractions.dll

A handle to an active endpoint

public interface ReceiveEndpointHandle

Properties

Ready

A task which can be awaited to know when the receive endpoint is ready

Task<ReceiveEndpointReady> Ready { get; }

Property Value

Task<ReceiveEndpointReady>

Methods

Stop(CancellationToken)

Stop the endpoint, releasing any resources associated with the endpoint

Task Stop(CancellationToken cancellationToken = default)

Parameters

cancellationToken CancellationToken

Returns

Task