org.fiolino.common.reflection.LambdaRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
General structure to easily create dynamic logic via MethodHandles and others.
package org.fiolino.common.reflection;
/**
* Returns lambda interfaces based on the one given in the Registry factory method.
*
* Created by kuli on 10.03.17.
*/
public interface LambdaRegistry extends Resettable {
/**
* Gets the function that calls the cached service.
*/
T getAccessor();
}