本文整理汇总了Java中com.alibaba.dubbo.rpc.protocol.thrift.ext.MultiServiceProcessor类的典型用法代码示例。如果您正苦于以下问题:Java MultiServiceProcessor类的具体用法?Java MultiServiceProcessor怎么用?Java MultiServiceProcessor使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
MultiServiceProcessor类属于com.alibaba.dubbo.rpc.protocol.thrift.ext包,在下文中一共展示了MultiServiceProcessor类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getProcessor
import com.alibaba.dubbo.rpc.protocol.thrift.ext.MultiServiceProcessor; //导入依赖的package包/类
protected TProcessor getProcessor() {
MultiServiceProcessor result = new MultiServiceProcessor();
result.addProcessor(
com.alibaba.dubbo.rpc.gen.dubbo.Demo.class,
new $__DemoStub.Processor( getServiceImpl() ) );
return result;
}
示例2: getProcessor
import com.alibaba.dubbo.rpc.protocol.thrift.ext.MultiServiceProcessor; //导入依赖的package包/类
protected TProcessor getProcessor() {
MultiServiceProcessor result = new MultiServiceProcessor();
result.addProcessor(
com.alibaba.dubbo.rpc.gen.dubbo.Demo.class,
new $__DemoStub.Processor(getServiceImpl()));
return result;
}
示例3: init
import com.alibaba.dubbo.rpc.protocol.thrift.ext.MultiServiceProcessor; //导入依赖的package包/类
protected void init() throws Exception {
TServerTransport serverTransport = new TServerSocket( PORT );
DubboDemoImpl impl = new DubboDemoImpl();
$__DemoStub.Processor processor = new $__DemoStub.Processor( impl );
// for test
Field field = processor.getClass().getSuperclass().getDeclaredField( "processMap" );
field.setAccessible( true );
Object obj = field.get( processor );
if ( obj instanceof Map ) {
( ( Map ) obj ).remove( "echoString" );
}
// ~
TBinaryProtocol.Factory bFactory = new TBinaryProtocol.Factory();
MultiServiceProcessor wrapper = new MultiServiceProcessor();
wrapper.addProcessor( Demo.class, processor );
server = new TThreadPoolServer(
new TThreadPoolServer.Args( serverTransport )
.inputProtocolFactory( bFactory )
.outputProtocolFactory( bFactory )
.inputTransportFactory( getTransportFactory() )
.outputTransportFactory( getTransportFactory() )
.processor( wrapper ) );
Thread startTread = new Thread() {
@Override
public void run() {
server.serve();
}
};
startTread.start();
while ( !server.isServing() ) {
Thread.sleep( 100 );
}
}
示例4: init
import com.alibaba.dubbo.rpc.protocol.thrift.ext.MultiServiceProcessor; //导入依赖的package包/类
protected void init() throws Exception {
TServerTransport serverTransport = new TServerSocket(PORT);
DubboDemoImpl impl = new DubboDemoImpl();
$__DemoStub.Processor processor = new $__DemoStub.Processor(impl);
// for test
Field field = processor.getClass().getSuperclass().getDeclaredField("processMap");
field.setAccessible(true);
Object obj = field.get(processor);
if (obj instanceof Map) {
((Map) obj).remove("echoString");
}
// ~
TBinaryProtocol.Factory bFactory = new TBinaryProtocol.Factory();
MultiServiceProcessor wrapper = new MultiServiceProcessor();
wrapper.addProcessor(Demo.class, processor);
server = new TThreadPoolServer(
new TThreadPoolServer.Args(serverTransport)
.inputProtocolFactory(bFactory)
.outputProtocolFactory(bFactory)
.inputTransportFactory(getTransportFactory())
.outputTransportFactory(getTransportFactory())
.processor(wrapper));
Thread startTread = new Thread() {
@Override
public void run() {
server.serve();
}
};
startTread.start();
while (!server.isServing()) {
Thread.sleep(100);
}
}