// WingsEmu
//
// Developed by NosWings Team
using System.Threading;
using System.Threading.Tasks;
namespace PhoenixLib.Events
{
///
/// Defines a handler for any type of notification
///
public interface IAsyncEventProcessor
where T : IAsyncEvent
{
Task HandleAsync(T e, CancellationToken cancellation);
}
}