/* * JBoss, Home of Professional Open Source. * Copyright 2012, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.capedwarf.channel.manager; import java.util.List; /** * @author <a href="mailto:marko.luksa@gmail.com">Marko Luksa</a> */ public class ChannelQueue { private MessagesAdapter adapter; private boolean closed; ChannelQueue(MessagesAdapter adapter) { this.adapter = adapter; } void notifyMessageAvailable() { synchronized (this) { notifyAll(); } } void close() { this.closed = true; notifyMessageAvailable(); // unblock queue } /** * Returns all the pending messages in the queue. If there are messages pending, all of those messages are returned. * If there are no messages pending, the method blocks up to timeoutMillis for a message to become available. * * @param timeoutMillis number of milliseconds to wait for a new message * @return a list of messages * @throws InterruptedException */ public List<Message> getPendingMessages(long timeoutMillis) throws InterruptedException { List<Message> messages = adapter.getPendingMessages(); if (messages.isEmpty()) { synchronized (this) { wait(timeoutMillis); } if (closed) { throw new ChannelQueueClosedException(); } messages = adapter.getPendingMessages(); } return messages; } public void ackMessages(List<String> messageIds) { adapter.ackMessages(messageIds); } public boolean hasChannelExpired(String token) { Channel channel = ChannelManagerImpl.getInstance().getChannelByToken(token); return (channel == null || channel.isExpired()); } }