io.github.icodegarden.nutrient.lang.registry.Registry Maven / Gradle / Ivy
package io.github.icodegarden.nutrient.lang.registry;
/**
*
* @author Fangfang.Xu
*
* @param
*/
public interface Registry extends Discovery {
RegisterResult register(R registration) throws RegistryException;
void deregister(R registration) throws RegistryException;
void close();
// void setStatus(R registration, String status);
//
// T getStatus(R registration);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy