Package com.google.dataconnector.protocol.proto.SdcFrame

Examples of com.google.dataconnector.protocol.proto.SdcFrame.SocketSessionReply


          .setPort(request.getPort());

        long start = this.clock.currentTimeMillis();
        handleSocketSessionRequest(request, replyBuilder);
        replyBuilder.setLatency(this.clock.currentTimeMillis() - start);
        SocketSessionReply reply = replyBuilder.build();
        sendToCloud(reply);
        this.sessionManager.notifySent(reply.getSocketHandle(), reply);
      } catch (InvalidProtocolBufferException e2) {
        LOG.warn("Unknown message type: " + frameInfo.getType() +
            ":" + frameInfo);
          throw new FramingException("Unknown message type: " + frameInfo.getType() +
              ":" + frameInfo);
View Full Code Here

TOP

Related Classes of com.google.dataconnector.protocol.proto.SdcFrame.SocketSessionReply

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.