当前位置: 首页>>代码示例>>Java>>正文


Java TThreadPoolServer.isServing方法代码示例

本文整理汇总了Java中org.apache.thrift.server.TThreadPoolServer.isServing方法的典型用法代码示例。如果您正苦于以下问题:Java TThreadPoolServer.isServing方法的具体用法?Java TThreadPoolServer.isServing怎么用?Java TThreadPoolServer.isServing使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.apache.thrift.server.TThreadPoolServer的用法示例。


在下文中一共展示了TThreadPoolServer.isServing方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: init

import org.apache.thrift.server.TThreadPoolServer; //导入方法依赖的package包/类
protected void init() throws Exception {
    TServerTransport serverTransport = new TServerSocket( PORT );

    TBinaryProtocol.Factory bFactory = new TBinaryProtocol.Factory();

    server = new TThreadPoolServer(
            new TThreadPoolServer.Args( serverTransport )
                    .inputProtocolFactory( bFactory )
                    .outputProtocolFactory( bFactory )
                    .inputTransportFactory( getTransportFactory() )
                    .outputTransportFactory( getTransportFactory() )
                    .processor( getProcessor() ) );

    Thread startTread = new Thread() {

        @Override
        public void run() {
            server.serve();
        }

    };

    startTread.setName( "thrift-server" );

    startTread.start();

    while( !server.isServing() ) {
        Thread.sleep( 100 );
    }

    protocol = ExtensionLoader.getExtensionLoader(Protocol.class)
            .getExtension( ThriftProtocol.NAME );

    invoker = protocol.refer( getInterface(), getUrl() );

}
 
开发者ID:dachengxi,项目名称:EatDubbo,代码行数:37,代码来源:AbstractTest.java

示例2: init

import org.apache.thrift.server.TThreadPoolServer; //导入方法依赖的package包/类
protected void init() throws Exception {
    TServerTransport serverTransport = new TServerSocket(PORT);

    TBinaryProtocol.Factory bFactory = new TBinaryProtocol.Factory();

    server = new TThreadPoolServer(
            new TThreadPoolServer.Args(serverTransport)
                    .inputProtocolFactory(bFactory)
                    .outputProtocolFactory(bFactory)
                    .inputTransportFactory(getTransportFactory())
                    .outputTransportFactory(getTransportFactory())
                    .processor(getProcessor()));

    Thread startTread = new Thread() {

        @Override
        public void run() {
            server.serve();
        }

    };

    startTread.setName("thrift-server");

    startTread.start();

    while (!server.isServing()) {
        Thread.sleep(100);
    }

    protocol = ExtensionLoader.getExtensionLoader(Protocol.class)
            .getExtension(ThriftProtocol.NAME);

    invoker = protocol.refer(getInterface(), getUrl());

}
 
开发者ID:hufeng,项目名称:dubbo2.js,代码行数:37,代码来源:AbstractTest.java

示例3: init

import org.apache.thrift.server.TThreadPoolServer; //导入方法依赖的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 );
        }

    }
 
开发者ID:dachengxi,项目名称:EatDubbo,代码行数:51,代码来源:ServiceMethodNotFoundTest.java

示例4: init

import org.apache.thrift.server.TThreadPoolServer; //导入方法依赖的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);
        }

    }
 
开发者ID:hufeng,项目名称:dubbo2.js,代码行数:51,代码来源:ServiceMethodNotFoundTest.java


注:本文中的org.apache.thrift.server.TThreadPoolServer.isServing方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。