Package com.chenshuo.muduo.zurg.proto.SlaveProto

Examples of com.chenshuo.muduo.zurg.proto.SlaveProto.GetFileContentResponse


        client.stop();
    }

    public void getFileContent(String fileName) throws Exception {
        GetFileContentRequest request = GetFileContentRequest.newBuilder().setFileName(fileName).build();
        GetFileContentResponse response = slaveService.getFileContent(null, request);
        System.out.println(response.getErrorCode());
        System.out.println(response.getFileSize());
        ByteString content = response.getContent();
        System.out.println(content.size());
        if (content.size() < 8192) {
            System.out.println(content.toStringUtf8());
        }
    }
View Full Code Here

TOP

Related Classes of com.chenshuo.muduo.zurg.proto.SlaveProto.GetFileContentResponse

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.