CServantImp.cpp 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. #include "CServantImp.h"
  17. #include "CServer.h"
  18. #include "servant/Application.h"
  19. #include "servant/Communicator.h"
  20. using namespace std;
  21. using namespace tars;
  22. //////////////////////////////////////////////////////
  23. void CServantImp::initialize()
  24. {
  25. //initialize servant here:
  26. //...
  27. }
  28. //////////////////////////////////////////////////////
  29. void CServantImp::destroy()
  30. {
  31. }
  32. //////////////////////////////////////////////////////
  33. tars::Int32 CServantImp::queryResult(const std::string& sIn, std::string &sOut, tars::TarsCurrentPtr current)
  34. {
  35. sOut = "[sResult:";
  36. sOut += sIn;
  37. sOut += "]";
  38. return 0;
  39. }