Thread pool dispatch strategy.
org.apache.dubbo.remoting.Dispatcher
<dubbo:protocol dispatcher="xxx" />
<!-- default configuration, will take effect if dispatcher attribute is not set in <dubbo:protocol> -->
<dubbo:provider dispatcher="xxx" />
org.apache.dubbo.remoting.transport.dispatcher.all.AllDispatcherorg.apache.dubbo.remoting.transport.dispatcher.direct.DirectDispatcherorg.apache.dubbo.remoting.transport.dispatcher.message.MessageOnlyDispatcherorg.apache.dubbo.remoting.transport.dispatcher.execution.ExecutionDispatcherorg.apache.dubbo.remoting.transport.dispatcher.connection.ConnectionOrderedDispatcherDirectory layout:
src
 |-main
    |-java
        |-com
            |-xxx
                |-XxxDispatcher.java (Dispatcher implementation)
    |-resources
        |-META-INF
            |-dubbo
                |-org.apache.dubbo.remoting.Dispatcher (plain text file with the 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