All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fiolino.common.reflection.Resettable Maven / Gradle / Ivy

Go to download

General structure to easily create dynamic logic via MethodHandles and others.

There is a newer version: 1.0.10
Show newest version
package org.fiolino.common.reflection;

/**
 * A registry is used to construct registry handles for a certain target handle.
 *
 * Created by kuli on 08.03.17.
 */
public interface Resettable {
    /**
     * Clears all cached data for this registry.
     *
     * Later calls will be handled as if they were the first ones.
     *
     * If some concurrent thread is calling my registry currently, then the behaviour is undefined: Usually no a
     */
    void reset();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy