| org.jboss.jms.asf.ServerSessionPoolFactory
All known Subclasses: org.jboss.jms.asf.StdServerSessionPoolFactory,
Method Summary | |
String | getName() Get the name of the factory. | ServerSessionPool | getServerSessionPool(Destination destination, Connection con, int minSession, int maxSession, long keepAlive, boolean isTransacted, int ack, boolean useLocalTX, MessageListener listener) Create a new ServerSessionPool. | XidFactoryMBean | getXidFactory() The getXidFactory method returns the XidFactory that
server sessions will use to get xids.. | void | setName(String name) Set the name of the factory. | void | setXidFactory(XidFactoryMBean xidFactory) The setXidFactory method supplies the XidFactory that
server sessions will use to get Xids to control local transactions. |
getName | String getName()(Code) | | Get the name of the factory.
The name of the factory. |
getServerSessionPool | ServerSessionPool getServerSessionPool(Destination destination, Connection con, int minSession, int maxSession, long keepAlive, boolean isTransacted, int ack, boolean useLocalTX, MessageListener listener) throws JMSException(Code) | | Create a new ServerSessionPool.
Parameters: destination - the destination Parameters: con - the jms connection Parameters: minSession - the minimum number of sessions Parameters: maxSession - the maximum number of sessions Parameters: keepAlive - the time to keep sessions alive Parameters: isTransacted - whether the pool is transacted Parameters: ack - the acknowledegement method Parameters: listener - the listener Parameters: useLocalTX - whether to use local transactions A new pool. throws: JMSException - for any error |
getXidFactory | XidFactoryMBean getXidFactory()(Code) | | The getXidFactory method returns the XidFactory that
server sessions will use to get xids..
a XidFactoryMBean value |
setName | void setName(String name)(Code) | | Set the name of the factory.
Parameters: name - The name of the factory. |
setXidFactory | void setXidFactory(XidFactoryMBean xidFactory)(Code) | | The setXidFactory method supplies the XidFactory that
server sessions will use to get Xids to control local transactions.
Parameters: xidFactory - a XidFactoryMBean value |
|
|