Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

IEventPublisher.cs

namespace Nop.Core.Events;

/// 
/// Represents an event publisher
/// 
public partial interface IEventPublisher
{
    /// 
    /// Publish event to consumers
    /// 
    /// Type of event
    /// Event object
    /// A task that represents the asynchronous operation
    Task PublishAsync(TEvent @event);

    /// 
    /// Publish event to consumers
    /// 
    /// Type of event
    /// Event object
    void Publish(TEvent @event);
}