Uses of Interface
org.springframework.jms.listener.serversession.ListenerSessionManager

Packages that use ListenerSessionManager
org.springframework.jms.listener.serversession This package contains the ServerSessionMessageListenerContainer implementation, based on the standard JMS ServerSessionPool API. 
 

Uses of ListenerSessionManager in org.springframework.jms.listener.serversession
 

Classes in org.springframework.jms.listener.serversession that implement ListenerSessionManager
 class ServerSessionMessageListenerContainer
          Deprecated. as of Spring 2.5, in favor of DefaultMessageListenerContainer and JmsMessageEndpointManager. To be removed in Spring 3.0.
 class ServerSessionMessageListenerContainer102
          Deprecated. as of Spring 2.5, in favor of DefaultMessageListenerContainer and JmsMessageEndpointManager. To be removed in Spring 3.0.
 

Methods in org.springframework.jms.listener.serversession with parameters of type ListenerSessionManager
 void SimpleServerSessionFactory.close(ListenerSessionManager sessionManager)
          Deprecated. This implementation is empty, as there is no state held for each ListenerSessionManager.
 void ServerSessionFactory.close(ListenerSessionManager sessionManager)
          Deprecated. Close all ServerSessions for the given session manager.
 void CommonsPoolServerSessionFactory.close(ListenerSessionManager sessionManager)
          Deprecated. Closes and removes the pool for the given session manager.
protected  ObjectPool CommonsPoolServerSessionFactory.createObjectPool(ListenerSessionManager sessionManager)
          Deprecated. Subclasses can override this if they want to return a specific Commons pool.
protected  PoolableObjectFactory CommonsPoolServerSessionFactory.createPoolableObjectFactory(ListenerSessionManager sessionManager)
          Deprecated. Create a Commons PoolableObjectFactory adapter for the given session manager.
protected  ServerSession AbstractPoolingServerSessionFactory.createServerSession(ListenerSessionManager sessionManager)
          Deprecated. Create a new poolable ServerSession.
 ServerSession SimpleServerSessionFactory.getServerSession(ListenerSessionManager sessionManager)
          Deprecated. Creates a new SimpleServerSession with a new JMS Session for every call.
 ServerSession ServerSessionFactory.getServerSession(ListenerSessionManager sessionManager)
          Deprecated. Retrieve a JMS ServerSession for the given session manager.
 ServerSession CommonsPoolServerSessionFactory.getServerSession(ListenerSessionManager sessionManager)
          Deprecated. Returns a ServerSession from the pool, creating a new pool for the given session manager if necessary.
protected  void CommonsPoolServerSessionFactory.serverSessionFinished(ServerSession serverSession, ListenerSessionManager sessionManager)
          Deprecated. Returns the given ServerSession, which just finished an execution of its listener, back to the pool.
protected abstract  void AbstractPoolingServerSessionFactory.serverSessionFinished(ServerSession serverSession, ListenerSessionManager sessionManager)
          Deprecated. Template method called by a ServerSession if it finished execution of its listener and is ready to go back into the pool.
 



Copyright © 2002-2008 The Spring Framework.