1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-11 16:32:57 +00:00
This commit is contained in:
Jan Korf
2022-04-24 15:25:50 +02:00
parent 11c48b3341
commit 536afa92da
3 changed files with 18 additions and 1 deletions
@@ -38,6 +38,8 @@ namespace CryptoExchange.Net.UnitTests.TestImplementations
public double IncomingKbps => throw new NotImplementedException();
public Uri Uri => new Uri("");
public static int lastId = 0;
public static object lastIdLock = new object();
@@ -111,5 +113,11 @@ namespace CryptoExchange.Net.UnitTests.TestImplementations
{
OnError?.Invoke(error);
}
public async Task ProcessAsync()
{
while (Connected)
await Task.Delay(50);
}
}
}