Package org.hornetq.core.server.impl.QueueImpl

Examples of org.hornetq.core.server.impl.QueueImpl.RefsOperation


   @Override
   public List<MessageReference> getInTXMessagesForConsumer(long consumerId)
   {
      if (this.tx != null)
      {
         RefsOperation oper = (RefsOperation)tx.getProperty(TransactionPropertyIndexes.REFS_OPERATION);
        
         if (oper == null)
         {
            return Collections.emptyList();
         }
         else
         {
            return oper.getListOnConsumer(consumerId);
         }
      }
      else
      {
         return Collections.emptyList();
View Full Code Here

TOP

Related Classes of org.hornetq.core.server.impl.QueueImpl.RefsOperation

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.