AdminServant.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /**
  2. * Tencent is pleased to support the open source community by making Tars available.
  3. *
  4. * Copyright (C) 2016THL A29 Limited, a Tencent company. All rights reserved.
  5. *
  6. * Licensed under the BSD 3-Clause License (the "License"); you may not use this file except
  7. * in compliance with the License. You may obtain a copy of the License at
  8. *
  9. * https://opensource.org/licenses/BSD-3-Clause
  10. *
  11. * Unless required by applicable law or agreed to in writing, software distributed
  12. * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  13. * CONDITIONS OF ANY KIND, either express or implied. See the License for the
  14. * specific language governing permissions and limitations under the License.
  15. */
  16. #ifndef __TARS_ADMIN_SERVANT_H
  17. #define __TARS_ADMIN_SERVANT_H
  18. #include "servant/AdminF.h"
  19. namespace tars
  20. {
  21. class Current;
  22. class Application;
  23. /**
  24. * 管理Servant
  25. */
  26. class AdminServant : public AdminF
  27. {
  28. public:
  29. /**
  30. * 构造函数
  31. * @param pEpollServer
  32. */
  33. AdminServant();
  34. /**
  35. * 析构函数
  36. */
  37. virtual ~AdminServant();
  38. /**
  39. * 初始化
  40. * @return int
  41. */
  42. virtual void initialize();
  43. /**
  44. * 退出
  45. */
  46. virtual void destroy();
  47. /**
  48. * 关闭服务
  49. * @param current
  50. */
  51. void shutdown(CurrentPtr current);
  52. /**
  53. * 通知
  54. * @param command
  55. */
  56. string notify(const string &command, CurrentPtr current);
  57. };
  58. ////////////////////////////////////////////////////////////////
  59. }
  60. #endif