1
0
mirror of https://github.com/JKorf/CryptoExchange.Net.git synced 2026-08-20 04:42:57 +00:00

Additional logging, added ThreadSafeFileWriter

This commit is contained in:
JKorf
2018-05-03 09:58:34 +02:00
parent 4366f4082a
commit 6c23487d21
6 changed files with 65 additions and 10 deletions
@@ -1,7 +1,9 @@
namespace CryptoExchange.Net.Interfaces
using CryptoExchange.Net.Logging;
namespace CryptoExchange.Net.Interfaces
{
public interface IWebsocketFactory
{
IWebsocket CreateWebsocket(string url);
IWebsocket CreateWebsocket(Log log, string url);
}
}