com.pi4j.common.CheckedFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pi4j-core Show documentation
Show all versions of pi4j-core Show documentation
Pi4J Java API & Runtime Library
The newest version!
package com.pi4j.common;
@FunctionalInterface
public interface CheckedFunction {
R apply(T t) throws Exception;
}