org.ebay.datameta.util.jdk.OpResultConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of util-jdk Show documentation
Show all versions of util-jdk Show documentation
Whatever may be missing in JDKs (and Java JDKs only), add here
The newest version!
package org.ebay.datameta.util.jdk;
/**
* Consumer of an operation result.
* @author Michael Bergens
*
* @param the type of the result value of the operation, see {@link OpResult#getValue()}.
* @see OpState
* @see OpResult
*/
public interface OpResultConsumer {
@Api void consume(OpResult result);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy