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

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


            System.out.println(content.toStringUtf8());
        }
    }

    public void runCommand(String cmd, String... args) throws Exception {
        RunCommandRequest request = RunCommandRequest.newBuilder()
                .setCommand(cmd)
                .addAllArgs(Arrays.asList(args))
                .setMaxStdout(1048576)
                .setMaxStderr(65536)
                .setTimeout(5)
View Full Code Here

TOP

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

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.