use of com.google.devtools.build.lib.remote.logging.RemoteExecutionLog.WaitExecutionDetails in project tools_remote by bazelbuild.
the class ActionGroupingTest method makeWatch.
private RpcCallDetails makeWatch(ActionResult result) {
ExecuteResponse response = ExecuteResponse.newBuilder().setResult(result).build();
Operation operation = Operation.newBuilder().setResponse(Any.pack(response)).setDone(true).build();
WaitExecutionDetails waitExecution = WaitExecutionDetails.newBuilder().addResponses(operation).build();
return RpcCallDetails.newBuilder().setWaitExecution(waitExecution).build();
}
Aggregations