namespace Wayne.Lib.Log
{
///
/// Interface that event subscribers should implement.
///
public interface IEventSubscriber
{
#region Properties
///
/// Identifies the subscriber. This name is used in the configuration to identify the receiver of the events.
///
string SubscriberId { get; }
#endregion
#region Methods
///
/// Called when an event should be handled by this subscriber.
///
///
void HandleEvent(EventLogEntry eventLogEntry);
#endregion
}
}