Show / Hide Table of Contents

    Interface IPublisher

    Publishes the messages to the internal bus.

    This is the actual mediator that forwards the messages being published to their subscribers.

    Namespace: Silverback.Messaging.Publishing
    Assembly: Silverback.Core.dll
    Syntax
    public interface IPublisher

    Methods

    | Improve this doc View source

    Publish(object)

    Publishes the specified message to the internal bus. The message will be forwarded to its subscribers 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).

    Declaration
    void Publish(object message)
    Parameters
    Type Name Description
    object message

    The message to be published.

    | Improve this doc View source

    Publish(object, bool)

    Publishes the specified message to the internal bus. The message will be forwarded to its subscribers 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).

    Declaration
    void Publish(object message, bool throwIfUnhandled)
    Parameters
    Type Name Description
    object message

    The message to be published.

    bool throwIfUnhandled

    A boolean value indicating whether an exception must be thrown if no subscriber is handling the message.

    | Improve this doc View source

    PublishAsync(object)

    Publishes the specified message to the internal bus. The message will be forwarded to its subscribers 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).

    Declaration
    Task PublishAsync(object message)
    Parameters
    Type Name Description
    object message

    The message to be published.

    Returns
    Type Description
    Task

    A Task representing the asynchronous operation.

    | Improve this doc View source

    PublishAsync(object, bool)

    Publishes the specified message to the internal bus. The message will be forwarded to its subscribers 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).

    Declaration
    Task PublishAsync(object message, bool throwIfUnhandled)
    Parameters
    Type Name Description
    object message

    The message to be published.

    bool throwIfUnhandled

    A boolean value indicating whether an exception must be thrown if no subscriber is handling the message.

    Returns
    Type Description
    Task

    A Task representing the asynchronous operation.

    | Improve this doc View source

    PublishAsync<TResult>(object)

    Publishes the specified message to the internal bus. The message will be forwarded to its subscribers 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).

    Declaration
    Task<IReadOnlyCollection<TResult>> PublishAsync<TResult>(object message)
    Parameters
    Type Name Description
    object message

    The message to be published.

    Returns
    Type Description
    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
    Name Description
    TResult

    The type of the result that is expected to be returned by the subscribers.

    | Improve this doc View source

    PublishAsync<TResult>(object, bool)

    Publishes the specified message to the internal bus. The message will be forwarded to its subscribers 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).

    Declaration
    Task<IReadOnlyCollection<TResult>> PublishAsync<TResult>(object message, bool throwIfUnhandled)
    Parameters
    Type Name Description
    object message

    The message to be published.

    bool throwIfUnhandled

    A boolean value indicating whether an exception must be thrown if no subscriber is handling the message.

    Returns
    Type Description
    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
    Name Description
    TResult

    The type of the result that is expected to be returned by the subscribers.

    | Improve this doc View source

    Publish<TResult>(object)

    Publishes the specified message to the internal bus. The message will be forwarded to its subscribers 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).

    Declaration
    IReadOnlyCollection<TResult> Publish<TResult>(object message)
    Parameters
    Type Name Description
    object message

    The message to be published.

    Returns
    Type Description
    IReadOnlyCollection<TResult>

    A collection of TResult, since multiple subscribers could handle the message and return a value.

    Type Parameters
    Name Description
    TResult

    The type of the result that is expected to be returned by the subscribers.

    | Improve this doc View source

    Publish<TResult>(object, bool)

    Publishes the specified message to the internal bus. The message will be forwarded to its subscribers 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).

    Declaration
    IReadOnlyCollection<TResult> Publish<TResult>(object message, bool throwIfUnhandled)
    Parameters
    Type Name Description
    object message

    The message to be published.

    bool throwIfUnhandled

    A boolean value indicating whether an exception must be thrown if no subscriber is handling the message.

    Returns
    Type Description
    IReadOnlyCollection<TResult>

    A collection of TResult, since multiple subscribers could handle the message and return a value.

    Type Parameters
    Name Description
    TResult

    The type of the result that is expected to be returned by the subscribers.

    • Improve this doc
    • View source
    In this article
    • Methods
      • Publish(object)
      • Publish(object, bool)
      • PublishAsync(object)
      • PublishAsync(object, bool)
      • PublishAsync<TResult>(object)
      • PublishAsync<TResult>(object, bool)
      • Publish<TResult>(object)
      • Publish<TResult>(object, bool)
    GitHub E-Mail
    ↑ Back to top © 2020 Sergio Aquilini