mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-30 12:54:54 +00:00
16 lines
471 B
C#
16 lines
471 B
C#
using System.Collections.Generic;
|
|
using System;
|
|
|
|
namespace PepperDash.Essentials.Core
|
|
{
|
|
public delegate void RouteChangedEventHandler(IRoutingWithFeedback midpoint, RouteSwitchDescriptor newRoute);
|
|
/// <summary>
|
|
/// Defines an IRouting with a feedback event
|
|
/// </summary>
|
|
public interface IRoutingWithFeedback : IRouting
|
|
{
|
|
List<RouteSwitchDescriptor> CurrentRoutes { get; }
|
|
|
|
event RouteChangedEventHandler RouteChanged;
|
|
}
|
|
} |