com.github.dmgcodevil.jmspy.functional.Consumer Maven / Gradle / Ivy
package com.github.dmgcodevil.jmspy.functional;
/**
* Functional interface to be used in methods such as forEach.
*
* @author dmgcodevil
*/
public interface Consumer {
/**
* Consumes an object of type to apply any actions.
*
* @param input the object of type
*/
void consume(T input);
}