
io.honeycomb.libhoney.transport.batch.BatchConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of libhoney-java Show documentation
Show all versions of libhoney-java Show documentation
The Java client for sending events honeycomb
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