hello-shop/libraries/HelloShop.EventBus.Abstractions/IDistributedEventHandler.cs
2025-03-20 22:13:45 +08:00

18 lines
608 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
namespace HelloShop.EventBus.Abstractions
{
public interface IDistributedEventHandler
{
Task HandleAsync(DistributedEvent @event);
}
public interface IDistributedEventHandler<in TDistributedEvent> : IDistributedEventHandler where TDistributedEvent : DistributedEvent
{
Task HandleAsync(TDistributedEvent @event);
Task IDistributedEventHandler.HandleAsync(DistributedEvent @event) => HandleAsync((TDistributedEvent)@event);
}
}