com.netflix.astyanax.recipes.queue.MessageConsumer Maven / Gradle / Ivy
/**
* Copyright 2013 Netflix, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.netflix.astyanax.recipes.queue;
import java.util.Collection;
import java.util.List;
import java.util.concurrent.TimeUnit;
import com.netflix.astyanax.recipes.locks.BusyLockException;
public interface MessageConsumer {
/**
* Acquire up to N items from the queue. Each item must be released by calling ackMessage.
*
* TODO: Items since last process time
*
* @param itemsToRead
* @return
* @throws InterruptedException
* @throws Exception
*/
List readMessages(int itemsToRead) throws MessageQueueException, BusyLockException, InterruptedException;
/**
* Acquire up to N items from the queue. Each item must be released by calling ackMessage.
*
* @param itemsToRead
* @param timeout
* @param units
* @return
*/
List readMessages(int itemsToRead, long timeout, TimeUnit units) throws MessageQueueException, BusyLockException, InterruptedException;
/**
* Read messages from a known shard
*
* @param shard
* @param itemsToRead
* @return
* @throws BusyLockException
* @throws MessageQueueException
*/
List readMessagesFromShard(String shard, int itemsToRead) throws MessageQueueException, BusyLockException;
/**
* Peek into messages from the queue. The queue state is not altered by this operation.
* @param itemsToPop
* @return
* @throws MessageQueueException
*/
Collection peekMessages(int itemsToPop) throws MessageQueueException;
/**
* Release a job after completion
* @param item
* @throws Exception
*/
void ackMessage(MessageContext message) throws MessageQueueException;
/**
* Release a set of jobs
* @param items
*/
void ackMessages(Collection messages) throws MessageQueueException;
/**
* Acknowledge the message as a poison message. This will put the message into
* a poison queue so it is persisted but does not interfere with the active queue.
*
* @param message
*/
void ackPoisonMessage(MessageContext message) throws MessageQueueException;
}