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

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