public class SimpleBatchingStrategy extends Object implements BatchingStrategy
| Constructor and Description |
|---|
SimpleBatchingStrategy(int batchSize,
int bufferLimit,
long timeout) |
| Modifier and Type | Method and Description |
|---|---|
MessageBatch |
addToBatch(String exchange,
String routingKey,
Message message)
Add a message to the batch and optionally release the batch.
|
Date |
nextRelease() |
MessageBatch |
releaseBatch()
Release a batch, perhaps due to a timeout.
|
public SimpleBatchingStrategy(int batchSize,
int bufferLimit,
long timeout)
batchSize - the batch size.bufferLimit - the max buffer size; could trigger a short batch. Does not apply
to a single message.timeout - the batch timeout.public MessageBatch addToBatch(String exchange, String routingKey, Message message)
BatchingStrategyaddToBatch in interface BatchingStrategyexchange - The exchange.routingKey - The routing key.message - The message.MessageBatch), or null if not ready to release.public Date nextRelease()
nextRelease in interface BatchingStrategypublic MessageBatch releaseBatch()
BatchingStrategynull is returned.releaseBatch in interface BatchingStrategy