Skip to main content

ResQ.Core

DtsopClient Class

Client for the DTSOP (Drone Tactical Strategy Optimization) service.
public sealed class DtsopClient : System.IDisposable
Inheritance System.Object → DtsopClient Implements System.IDisposable

Example

var client = new DtsopClient("http://localhost:9000");

var strategy = await client.RequestStrategyAsync("scenario-001");
Console.WriteLine($"Coverage: {strategy.EstimatedCoveragePercent:F1}%");

Remarks

Provides access to optimization strategies and deployment recommendations from the simulation layer.
Constructors
DtsopClient(string)Initializes a new instance of the DtsopClient class.
Methods
RequestStrategyAsync(string, CancellationToken)Requests an optimization strategy for a scenario.