TCPClient.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #pragma once
  2. #include <signal.h>
  3. #include <iostream>
  4. #include "Util/logger.h"
  5. #include "Network/TcpClient.h"
  6. #include "Util/NoticeCenter.h"
  7. #include "Notices.h"
  8. using namespace std;
  9. using namespace toolkit;
  10. // dataType
  11. #include "SendLogin.h"
  12. #include "NettyServerCommandEnum.h"
  13. #include "NettyServerResultMsg.h"
  14. #include "NettyClientResultMsg.h"
  15. #include "SendLogin.h"
  16. #include "NettyClientCommandEnum.h"
  17. #include "SendHeartBeat.h"
  18. namespace MIVA
  19. {
  20. class TCPClient: public TcpClient
  21. {
  22. private:
  23. /* data */
  24. public:
  25. typedef std::shared_ptr<TCPClient> Ptr;
  26. TCPClient():TcpClient() {
  27. DebugL;
  28. }
  29. ~TCPClient(){
  30. DebugL;
  31. }
  32. protected:
  33. virtual void onConnect(const SockException &ex) override;
  34. virtual void onRecv(const Buffer::Ptr &pBuf) override;
  35. virtual void onFlush() override;
  36. virtual void onErr(const SockException &ex) override;
  37. virtual void onManager() override;
  38. private:
  39. int _nTick = 0;
  40. std::string _IP;
  41. int32_t _port;
  42. };
  43. } // namespace VIA