Package org.platanios.tensorflow.proto
Interface EagerServiceOuterClass.WaitQueueDoneRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
EagerServiceOuterClass.WaitQueueDoneRequest
,EagerServiceOuterClass.WaitQueueDoneRequest.Builder
- Enclosing class:
- EagerServiceOuterClass
public static interface EagerServiceOuterClass.WaitQueueDoneRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getContextId()
fixed64 context_id = 1;
long
getOpId(int index)
Ids to wait on.int
getOpIdCount()
Ids to wait on.java.util.List<java.lang.Long>
getOpIdList()
Ids to wait on.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getContextId
long getContextId()
fixed64 context_id = 1;
- Returns:
- The contextId.
-
getOpIdList
java.util.List<java.lang.Long> getOpIdList()
Ids to wait on. If empty, wait on everything currently pending.
repeated int64 op_id = 2;
- Returns:
- A list containing the opId.
-
getOpIdCount
int getOpIdCount()
Ids to wait on. If empty, wait on everything currently pending.
repeated int64 op_id = 2;
- Returns:
- The count of opId.
-
getOpId
long getOpId(int index)
Ids to wait on. If empty, wait on everything currently pending.
repeated int64 op_id = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The opId at the given index.
-
-