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

io.github.sinri.keel.maids.watchman.KeelWatchman Maven / Gradle / Ivy

Go to download

A website framework with VERT.X for ex-PHP-ers, exactly Ark Framework Users.

The newest version!
package io.github.sinri.keel.maids.watchman;

import io.github.sinri.keel.logger.issue.record.KeelIssueRecord;
import io.github.sinri.keel.verticles.KeelVerticle;
import io.vertx.core.Handler;

/**
 * 集群定时器基础类.
 * For every interval, call once regular handler, in a random node decided by clustered event bus.
 * The three methods defined here should be same throughout nodes in cluster.
 *
 * @since 2.9.3
 */
public interface KeelWatchman> extends KeelVerticle {

    String watchmanName();

    long interval();

    Handler regularHandler();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy