Interface IPublisher
- Namespace
- Silverback.Messaging.Publishing
- Assembly
- Silverback.Core.dll
Publishes messages via the message bus, forwarding them to the subscribers.
public interface IPublisher
Properties
Context
Gets the ISilverbackContext in the current scope.
ISilverbackContext Context { get; }
Property Value
Methods
Publish(object, bool)
Publishes the specified message to its subscribers via the message bus and the method will not complete until all subscribers have processed it (unless using Silverback.Integration to produce and consume the message through a message broker).
void Publish(object message, bool throwIfUnhandled = false)
Parameters
messageobjectThe message to be published.
throwIfUnhandledboolA boolean value indicating whether an exception must be thrown if no subscriber is handling the message.
PublishAsync(object, bool, CancellationToken)
Publishes the specified message to its subscribers via the message bus and the Task will not complete until all subscribers have processed it (unless using Silverback.Integration to produce and consume the message through a message broker).
Task PublishAsync(object message, bool throwIfUnhandled, CancellationToken cancellationToken = default)
Parameters
messageobjectThe message to be published.
throwIfUnhandledboolA boolean value indicating whether an exception must be thrown if no subscriber is handling the message.
cancellationTokenCancellationTokenThe CancellationToken that can be used to cancel the operation.
Returns
PublishAsync(object, CancellationToken)
Publishes the specified message to its subscribers via the message bus and the Task will not complete until all subscribers have processed it (unless using Silverback.Integration to produce and consume the message through a message broker).
Task PublishAsync(object message, CancellationToken cancellationToken = default)
Parameters
messageobjectThe message to be published.
cancellationTokenCancellationTokenThe CancellationToken that can be used to cancel the operation.
Returns
PublishAsync<TResult>(object, bool, CancellationToken)
Publishes the specified message to its subscribers via the message bus and the Task will not complete until all subscribers have processed it (unless using Silverback.Integration to produce and consume the message through a message broker).
Task<IReadOnlyCollection<TResult>> PublishAsync<TResult>(object message, bool throwIfUnhandled, CancellationToken cancellationToken = default)
Parameters
messageobjectThe message to be published.
throwIfUnhandledboolA boolean value indicating whether an exception must be thrown if no subscriber is handling the message.
cancellationTokenCancellationTokenThe CancellationToken that can be used to cancel the operation.
Returns
- Task<IReadOnlyCollection<TResult>>
A Task<TResult> representing the asynchronous operation. The task result contains a collection of
TResult, since multiple subscribers could handle the message and return a value.
Type Parameters
TResultThe type of the result that is expected to be returned by the subscribers.
PublishAsync<TResult>(object, CancellationToken)
Publishes the specified message to its subscribers via the message bus and the Task will not complete until all subscribers have processed it (unless using Silverback.Integration to produce and consume the message through a message broker).
Task<IReadOnlyCollection<TResult>> PublishAsync<TResult>(object message, CancellationToken cancellationToken = default)
Parameters
messageobjectThe message to be published.
cancellationTokenCancellationTokenThe CancellationToken that can be used to cancel the operation.
Returns
- Task<IReadOnlyCollection<TResult>>
A Task<TResult> representing the asynchronous operation. The task result contains a collection of
TResult, since multiple subscribers could handle the message and return a value.
Type Parameters
TResultThe type of the result that is expected to be returned by the subscribers.
Publish<TResult>(object, bool)
Publishes the specified message to its subscribers via the message bus and the method will not complete until all subscribers have processed it (unless using Silverback.Integration to produce and consume the message through a message broker).
IReadOnlyCollection<TResult> Publish<TResult>(object message, bool throwIfUnhandled = false)
Parameters
messageobjectThe message to be published.
throwIfUnhandledboolA boolean value indicating whether an exception must be thrown if no subscriber is handling the message.
Returns
- IReadOnlyCollection<TResult>
A collection of
TResult, since multiple subscribers could handle the message and return a value.
Type Parameters
TResultThe type of the result that is expected to be returned by the subscribers.