AServantImp.cpp 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 "AServantImp.h"
  17. #include "AServer.h"
  18. using namespace std;
  19. //////////////////////////////////////////////////////
  20. void AServantImp::initialize()
  21. {
  22. //initialize servant here:
  23. //...
  24. }
  25. //////////////////////////////////////////////////////
  26. void AServantImp::destroy()
  27. {
  28. //destroy servant here:
  29. //...
  30. }
  31. int AServantImp::test(tars::TarsCurrentPtr current)
  32. {
  33. return 0;
  34. }
  35. tars::Int32 AServantImp::testInt(tars::Int32 iIn,tars::Int32 &iOut,tars::TarsCurrentPtr current)
  36. {
  37. iOut = iIn;
  38. return 0;
  39. }
  40. tars::Int32 AServantImp::testStr(const std::string& sIn, std::string &sOut, tars::TarsCurrentPtr current)
  41. {
  42. sOut = sIn;
  43. return 0;
  44. }