Session.h
上传用户:xfwatch
上传日期:2020-12-14
资源大小:872k
文件大小:2k
源码类别:

中间件编程

开发平台:

Java

  1. /*
  2.  * JBoss, Home of Professional Open Source
  3.  * Copyright 2008, Red Hat, Inc., and others contributors as indicated
  4.  * by the @authors tag. All rights reserved.
  5.  * See the copyright.txt in the distribution for a
  6.  * full listing of individual contributors.
  7.  * This copyrighted material is made available to anyone wishing to use,
  8.  * modify, copy, or redistribute it subject to the terms and conditions
  9.  * of the GNU Lesser General Public License, v. 2.1.
  10.  * This program is distributed in the hope that it will be useful, but WITHOUT A
  11.  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
  12.  * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
  13.  * You should have received a copy of the GNU Lesser General Public License,
  14.  * v.2.1 along with this distribution; if not, write to the Free Software
  15.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  16.  * MA  02110-1301, USA.
  17.  */
  18. #ifndef Session_H_
  19. #define Session_H_
  20. #include "Message.h"
  21. #include "AtmiBrokerSignalHandler.h"
  22. class Session {
  23. public:
  24. Session() : sigHandler_(NULL) {
  25. }
  26. virtual ~Session() {
  27. }
  28. virtual void setSendTo(const char* replyTo) = 0;
  29. virtual const char* getReplyTo() = 0;
  30. virtual MESSAGE receive(long time) = 0;
  31. virtual bool send(MESSAGE message) = 0;
  32. virtual void disconnect() = 0;
  33. virtual int getId() = 0;
  34. /**
  35.  * Can this session send
  36.  */
  37. void setCanSend(bool canSend) {
  38. this->canSend = canSend;
  39. }
  40. /**
  41.  * Can this session receive
  42.  */
  43. void setCanRecv(bool canRecv) {
  44. this->canRecv = canRecv;
  45. }
  46. /**
  47.  * Can this session send
  48.  */
  49. bool getCanSend() {
  50. return canSend;
  51. }
  52. /**
  53.  * Can this session receive
  54.  */
  55. bool getCanRecv() {
  56. return canRecv;
  57. }
  58. /**
  59.  * Set the last rcode
  60.  */
  61. void setLastEvent(long event) {
  62. this->lastEvent = event;
  63. }
  64. /**
  65.  * Get the last rcode
  66.  */
  67. long getLastEvent() {
  68. return lastEvent;
  69. }
  70. /**
  71.  * Set the last rcode
  72.  */
  73. void setLastRCode(long rcode) {
  74. this->lastRCode = rcode;
  75. }
  76. /**
  77.  * Get the last rcode
  78.  */
  79. long getLastRCode() {
  80. return lastRCode;
  81. }
  82. void setSigHandler(AtmiBrokerSignalHandler* sigHandler) {
  83. sigHandler_ = sigHandler;
  84. }
  85. void blockSignals(bool sigRestart) {
  86. if (sigHandler_ != NULL)
  87. sigHandler_->blockSignals(sigRestart);
  88. }
  89. int unblockSignals() {
  90. return (sigHandler_ != NULL ? sigHandler_->unblockSignals() : 0);
  91. }
  92. protected:
  93. bool canSend;
  94. bool canRecv;
  95. long lastEvent;
  96. long lastRCode;
  97. AtmiBrokerSignalHandler* sigHandler_;
  98. };
  99. #endif