Files
ParkingRobot/ClumsyPilot/ParkrobTrajplanner/EMPlanner/Facade/IEmPlanningService.cs
T

10 lines
322 B
C#

using System.Threading;
namespace MultiWheelC.TrajectoryPlanning.EMPlanner;
/// <summary>Pure, one-shot EM planning boundary with no scheduler, UI, hardware, or clock dependency.</summary>
public interface IEmPlanningService
{
EmPlanningResult Plan(EmPlanningRequest request, CancellationToken cancellationToken);
}