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

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

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

/**
 * @author Pengtao Qiu
 */
interface RouterInstaller : Comparable {

    fun install()

    fun order() = Integer.MAX_VALUE

    override fun compareTo(other: RouterInstaller): Int = order().compareTo(other.order())
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy