xbserversessionpool.java

来自「java开源的企业总线.xmlBlaster」· Java 代码 · 共 37 行

JAVA
37
字号
/*------------------------------------------------------------------------------Name:      XBServerSessionPool.javaProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE file------------------------------------------------------------------------------*/package org.xmlBlaster.jms;import javax.jms.JMSException;import javax.jms.ServerSession;import javax.jms.ServerSessionPool;/** * XBServerSessionPool * @author <a href="mailto:michele@laghi.eu">Michele Laghi</a> */public class XBServerSessionPool implements ServerSessionPool {   private XBConnection connection;   private ServerSession serverSession;      public XBServerSessionPool(XBConnection connection) {      this.connection = connection;   }      /**    * @see javax.jms.ServerSessionPool#getServerSession()    */   public synchronized ServerSession getServerSession() throws JMSException {      // TODO Implement the real pooling.      if (this.serverSession == null)         this.serverSession = new XBServerSession(this.connection);      return this.serverSession;   }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?