| 1234567891011121314151617181920212223242526272829 |
- using System;
- using Muchinfo.TASClient.NetworkCore;
- using Muchinfo.TASClient.NetworkCore.Interfaces;
- namespace Muchinfo.TASClient.Service.LinkProxy.TCP
- {
- public class TradeTcpCallback : INetworkCore
- {
- public void OnConnected()
- {
- throw new NotImplementedException();
- }
- public void OnDisconnected()
- {
- throw new NotImplementedException();
- }
- public void OnReconnectChangeState(ReconnectChangeState state)
- {
- throw new NotImplementedException();
- }
- public void OnReceiveNotification(TCPPackage tcpPackage)
- {
- throw new NotImplementedException();
- }
- }
- }
|