feat: implement Routing Feedback WebSocket service and associated request handlers

This commit is contained in:
Neil Dorin 2026-06-22 21:30:47 -06:00
parent be545bbfa4
commit b65f895e06
7 changed files with 812 additions and 5 deletions

View file

@ -190,6 +190,11 @@ public class EssentialsWebApi : EssentialsDevice
Name = "Get Routing Devices and TieLines",
RouteHandler = new GetRoutingDevicesAndTieLinesHandler()
},
new HttpCwsRoute("routingFeedbackSession")
{
Name = "Routing Feedback WebSocket Session",
RouteHandler = new RoutingFeedbackSessionRequestHandler()
},
new HttpCwsRoute("initializationExceptions")
{
Name = "Get Initialization Exceptions",