Package org.tensorflow.distruntime
Interface ClusterDefOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ClusterDef,ClusterDef.Builder
public interface ClusterDefOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JobDefgetJob(int index)The jobs that comprise the cluster.intgetJobCount()The jobs that comprise the cluster.java.util.List<JobDef>getJobList()The jobs that comprise the cluster.JobDefOrBuildergetJobOrBuilder(int index)The jobs that comprise the cluster.java.util.List<? extends JobDefOrBuilder>getJobOrBuilderList()The jobs that comprise the cluster.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getJobList
java.util.List<JobDef> getJobList()
The jobs that comprise the cluster.
repeated .tensorflow.JobDef job = 1;
-
getJob
JobDef getJob(int index)
The jobs that comprise the cluster.
repeated .tensorflow.JobDef job = 1;
-
getJobCount
int getJobCount()
The jobs that comprise the cluster.
repeated .tensorflow.JobDef job = 1;
-
getJobOrBuilderList
java.util.List<? extends JobDefOrBuilder> getJobOrBuilderList()
The jobs that comprise the cluster.
repeated .tensorflow.JobDef job = 1;
-
getJobOrBuilder
JobDefOrBuilder getJobOrBuilder(int index)
The jobs that comprise the cluster.
repeated .tensorflow.JobDef job = 1;
-
-