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

com.daiyc.extension.core.ExtensionRegistry Maven / Gradle / Ivy

package com.daiyc.extension.core;

import java.util.function.Supplier;

/**
 * @author daiyc
 * @since 2024/7/27
 */
public interface ExtensionRegistry {
     void register(Class type, Supplier supplier);

    T get();

    T get(String name);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy