com.icthh.xm.commons.scheduler.service.SchedulerEventHandler Maven / Gradle / Ivy
The newest version!
package com.icthh.xm.commons.scheduler.service;
import com.icthh.xm.commons.scheduler.domain.ScheduledEvent;
public interface SchedulerEventHandler {
String ALL = "ALL";
void onEvent(ScheduledEvent scheduledEvent, String tenantKey);
default String eventType() {
return ALL;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy