TradeTcpCallback.cs 707 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using Muchinfo.TASClient.NetworkCore;
  3. using Muchinfo.TASClient.NetworkCore.Interfaces;
  4. namespace Muchinfo.TASClient.Service.LinkProxy.TCP
  5. {
  6. public class TradeTcpCallback : INetworkCore
  7. {
  8. public void OnConnected()
  9. {
  10. throw new NotImplementedException();
  11. }
  12. public void OnDisconnected()
  13. {
  14. throw new NotImplementedException();
  15. }
  16. public void OnReconnectChangeState(ReconnectChangeState state)
  17. {
  18. throw new NotImplementedException();
  19. }
  20. public void OnReceiveNotification(TCPPackage tcpPackage)
  21. {
  22. throw new NotImplementedException();
  23. }
  24. }
  25. }