All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.honeycomb.libhoney.transport.batch.BatchConsumer Maven / Gradle / Ivy

The newest version!
package io.honeycomb.libhoney.transport.batch;

import java.util.List;

/**
 * BatchConsumer consumes batches of 'T'.
 *
 * @param  The element type of the batches.
 */
public interface BatchConsumer extends AutoCloseable {
    void consume(List batch) throws InterruptedException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy