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

com.firefly.example.reactive.coffee.store.router.RouterInstaller Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.firefly.example.reactive.coffee.store.router;

/**
 * @author Pengtao Qiu
 */
public interface RouterInstaller extends Comparable {

    void install();

    default int compareTo(RouterInstaller o) {
        return order().compareTo(o.order());
    }

    default Integer order() {
        return Integer.MAX_VALUE;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy