public interface MessageProcessor<T>
An interface for handling the batched messages. The implementers need to define what needs to be done with the batched messages.
void process(java.util.List<T> objects)
objects - - The list of objects that are batched.