Asynchronous Events
Asynchronous event handling in RCommon
Implementation
It is very simply mark an event as asynchronous and there is no specific implementation required. We simply require the IAsyncEvent marker interface:
using RCommon.EventHandling;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Examples.Messaging.MassTransit
{
public class TestEvent : IAsyncEvent
{
public TestEvent(DateTime dateTime, Guid guid)
{
DateTime = dateTime;
Guid = guid;
}
public TestEvent()
{
}
public DateTime DateTime { get; }
public Guid Guid { get; }
}
}
Last updated