org.tensorflow.distruntime.RunStepResponseOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/protobuf/master.proto
package org.tensorflow.distruntime;
public interface RunStepResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.RunStepResponse)
org.nd4j.shade.protobuf.MessageOrBuilder {
/**
*
* NOTE: The order of the returned tensors may or may not match
* the fetch order specified in RunStepRequest.
*
*
* repeated .tensorflow.NamedTensorProto tensor = 1;
*/
java.util.List
getTensorList();
/**
*
* NOTE: The order of the returned tensors may or may not match
* the fetch order specified in RunStepRequest.
*
*
* repeated .tensorflow.NamedTensorProto tensor = 1;
*/
org.tensorflow.framework.NamedTensorProto getTensor(int index);
/**
*
* NOTE: The order of the returned tensors may or may not match
* the fetch order specified in RunStepRequest.
*
*
* repeated .tensorflow.NamedTensorProto tensor = 1;
*/
int getTensorCount();
/**
*
* NOTE: The order of the returned tensors may or may not match
* the fetch order specified in RunStepRequest.
*
*
* repeated .tensorflow.NamedTensorProto tensor = 1;
*/
java.util.List extends org.tensorflow.framework.NamedTensorProtoOrBuilder>
getTensorOrBuilderList();
/**
*
* NOTE: The order of the returned tensors may or may not match
* the fetch order specified in RunStepRequest.
*
*
* repeated .tensorflow.NamedTensorProto tensor = 1;
*/
org.tensorflow.framework.NamedTensorProtoOrBuilder getTensorOrBuilder(
int index);
/**
*
* Returned metadata if requested in the options.
*
*
* .tensorflow.RunMetadata metadata = 2;
*/
boolean hasMetadata();
/**
*
* Returned metadata if requested in the options.
*
*
* .tensorflow.RunMetadata metadata = 2;
*/
org.tensorflow.framework.RunMetadata getMetadata();
/**
*
* Returned metadata if requested in the options.
*
*
* .tensorflow.RunMetadata metadata = 2;
*/
org.tensorflow.framework.RunMetadataOrBuilder getMetadataOrBuilder();
/**
*
* If store_errors_in_response_body is true in the request, then
* optionally the server may return an OK status for the RPC and
* fill the true status into the fields below, to allow for messages
* that are too long to fit in metadata.
*
*
* .tensorflow.error.Code status_code = 3;
*/
int getStatusCodeValue();
/**
*
* If store_errors_in_response_body is true in the request, then
* optionally the server may return an OK status for the RPC and
* fill the true status into the fields below, to allow for messages
* that are too long to fit in metadata.
*
*
* .tensorflow.error.Code status_code = 3;
*/
org.tensorflow.framework.Code getStatusCode();
/**
* string status_error_message = 4;
*/
java.lang.String getStatusErrorMessage();
/**
* string status_error_message = 4;
*/
org.nd4j.shade.protobuf.ByteString
getStatusErrorMessageBytes();
}