package tzatziki.util; /** * @author <a href="http://twitter.com/aloyer">@aloyer</a> */ public interface Consumer<T> { void consume(T value); }