Closed scottoffen closed 3 years ago
Changes the IRestServer.Run() method to use a ManualResetToken, rather than polling for IRestServer.IsListenting every n seconds or running a CPU intensive while (true) { } loop.
IRestServer.Run()
ManualResetToken
IRestServer.IsListenting
while (true) { }
Changes the
IRestServer.Run()
method to use aManualResetToken
, rather than polling forIRestServer.IsListenting
every n seconds or running a CPU intensivewhile (true) { }
loop.