kz.greetgo.scheduling.collector.SchedulerConfigStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.scheduling Show documentation
Show all versions of greetgo.scheduling Show documentation
Scheduler using in greetgo!
The newest version!
package kz.greetgo.scheduling.collector;
public interface SchedulerConfigStore {
boolean exists(String location);
String getContent(String location);
void setContent(String location, String content);
default void delete(String location) {
setContent(location, null);
}
long lastModifiedMillis(String location);
String placeInfo(String location);
}