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

com.github.linyuzai.connection.loadbalance.netty.concept.NettyScoped Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
package com.github.linyuzai.connection.loadbalance.netty.concept;

import com.github.linyuzai.connection.loadbalance.core.scope.Scoped;

/**
 * Netty 作用域。
 * 

* Netty scope. */ public interface NettyScoped extends Scoped { String NAME = NettyScoped.class.getSimpleName(); @Override default boolean support(String scope) { return NAME.equals(scope); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy