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

chao.java.tools.servicepool.DefaultService Maven / Gradle / Ivy

There is a newer version: 1.9.0
Show newest version
package chao.java.tools.servicepool;


/**
 * @author qinchao
 * @since 2019/5/1
 */
public class DefaultService implements IService {
    public String path() {
        return getClass().getName();
    }

    public int priority() {
        return IService.Priority.NORMAL_PRIORITY;
    }

    public int scope() {
        return Scope.once;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy