消息调度扩展
扩展说明
通道信息调度器,用于指定线程池模型。
扩展点
org.apache.dubbo.remoting.Dispatcher
扩展配置
<dubbo:protocol dispatcher="xxx" />
<!-- The default value setting, when <dubbo:protocol> does not configure the dispatcher attribute, use this configuration -->
<dubbo:provider dispatcher="xxx" />
已知扩展
org.apache.dubbo.remoting.transport.dispatcher.all.AllDispatcher
org.apache.dubbo.remoting.transport.dispatcher.direct.DirectDispatcher
org.apache.dubbo.remoting.transport.dispatcher.message.MessageOnlyDispatcher
org.apache.dubbo.remoting.transport.dispatcher.execution.ExecutionDispatcher
org.apache.dubbo.remoting.transport.dispatcher.connection.ConnectionOrderedDispatcher
扩展示例
Maven 项目结构
src
|-main
|-java
|-com
|-xxx
|-XxxDispatcher.java (implements the Dispatcher interface)
|-resources
|-META-INF
|-dubbo
|-org.apache.dubbo.remoting.Dispatcher (plain text file, content: xxx=com.xxx.XxxDispatcher)
XxxDispatcher.java
package com.xxx;
import org.apache.dubbo.remoting.Dispatcher;
public class XxxDispatcher implements Dispatcher {
public Group lookup(URL url) {
//...
}
}
META-INF/dubbo/org.apache.dubbo.remoting.Dispatcher
xxx=com.xxx.XxxDispatcher
最后修改于 2023 年 1 月 2 日: 增强英文文档 (#1798) (95a9f4f6c1c)