Some latency bug found

This commit is contained in:
2025-06-30 15:45:41 +03:00
parent af6e7b6547
commit 1b0f867653
5 changed files with 17 additions and 38 deletions
+2 -2
View File
@@ -9,9 +9,9 @@ namespace Example.Backend
[SharedObjectSingleton]
public class LoadTestImp : ILoadTest
{
public int Next(int last)
public Task<int> Next(int last)
{
return last + 1;
return Task.FromResult( last + 1);
}
public int Last(int next)