io.datakernel.trigger.TriggerRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datakernel-boot Show documentation
Show all versions of datakernel-boot Show documentation
An intelligent way of booting complex applications and services according to their dependencies
package io.datakernel.trigger;
import com.google.inject.Key;
import java.util.function.Supplier;
public interface TriggerRegistry {
Key> getComponentKey();
String getComponentName();
void add(Severity severity, String name, Supplier triggerFunction);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy