Package com.facebook.thrift.transport

Examples of com.facebook.thrift.transport.TNonblockingTransport


    /**
     * Accept a new connection.
     */
    private void handleAccept() throws IOException {
      TNonblockingTransport client = null;
      try {
        client = (TNonblockingTransport)serverTransport.accept();
      } catch (TTransportException tte) {
        LOGGER.warn("Exception trying to accept!", tte);
        return;
      }

      SelectionKey clientKey = client.registerSelector(selector, SelectionKey.OP_READ);

      // add this key to the map
      FrameBuffer frameBuffer = new FrameBuffer(client, clientKey);
      clientKey.attach(frameBuffer);
    }
View Full Code Here

TOP

Related Classes of com.facebook.thrift.transport.TNonblockingTransport

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.