com.netflix.logging.messaging
Interface MessageProcessor<T>


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.


Method Summary
 void process(java.util.List<T> objects)
          Contract for handling the batched objects.
 

Method Detail

process

void process(java.util.List<T> objects)
Contract for handling the batched objects.

Parameters:
objects - - The list of objects that are batched.