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

com.github.ltsopensource.alarm.AbstractAlarmNotifier Maven / Gradle / Ivy

package com.github.ltsopensource.alarm;

/**
 * 要保证同一条消息不会被重复发送多次
 * @author Robert HG ([email protected])  on 2/17/16.
 */
public abstract class AbstractAlarmNotifier implements AlarmNotifier {
    @Override
    public final void notice(T message) {
        // TODO

        doNotice(message);
    }

    protected abstract void doNotice(T message);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy