Package org.tensorflow.framework
Interface QueueRunnerDefOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
QueueRunnerDef,QueueRunnerDef.Builder
public interface QueueRunnerDefOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCancelOpName()The operation to run to cancel the queue.org.nd4j.shade.protobuf.ByteStringgetCancelOpNameBytes()The operation to run to cancel the queue.StringgetCloseOpName()The operation to run to close the queue.org.nd4j.shade.protobuf.ByteStringgetCloseOpNameBytes()The operation to run to close the queue.StringgetEnqueueOpName(int index)A list of enqueue operations.org.nd4j.shade.protobuf.ByteStringgetEnqueueOpNameBytes(int index)A list of enqueue operations.intgetEnqueueOpNameCount()A list of enqueue operations.List<String>getEnqueueOpNameList()A list of enqueue operations.CodegetQueueClosedExceptionTypes(int index)A list of exception types considered to signal a safely closed queue if raised during enqueue operations.intgetQueueClosedExceptionTypesCount()A list of exception types considered to signal a safely closed queue if raised during enqueue operations.List<Code>getQueueClosedExceptionTypesList()A list of exception types considered to signal a safely closed queue if raised during enqueue operations.intgetQueueClosedExceptionTypesValue(int index)A list of exception types considered to signal a safely closed queue if raised during enqueue operations.List<Integer>getQueueClosedExceptionTypesValueList()A list of exception types considered to signal a safely closed queue if raised during enqueue operations.StringgetQueueName()Queue name.org.nd4j.shade.protobuf.ByteStringgetQueueNameBytes()Queue name.-
Methods inherited from interface org.nd4j.shade.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getQueueName
String getQueueName()
Queue name.
string queue_name = 1;- Returns:
- The queueName.
-
getQueueNameBytes
org.nd4j.shade.protobuf.ByteString getQueueNameBytes()
Queue name.
string queue_name = 1;- Returns:
- The bytes for queueName.
-
getEnqueueOpNameList
List<String> getEnqueueOpNameList()
A list of enqueue operations.
repeated string enqueue_op_name = 2;- Returns:
- A list containing the enqueueOpName.
-
getEnqueueOpNameCount
int getEnqueueOpNameCount()
A list of enqueue operations.
repeated string enqueue_op_name = 2;- Returns:
- The count of enqueueOpName.
-
getEnqueueOpName
String getEnqueueOpName(int index)
A list of enqueue operations.
repeated string enqueue_op_name = 2;- Parameters:
index- The index of the element to return.- Returns:
- The enqueueOpName at the given index.
-
getEnqueueOpNameBytes
org.nd4j.shade.protobuf.ByteString getEnqueueOpNameBytes(int index)
A list of enqueue operations.
repeated string enqueue_op_name = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the enqueueOpName at the given index.
-
getCloseOpName
String getCloseOpName()
The operation to run to close the queue.
string close_op_name = 3;- Returns:
- The closeOpName.
-
getCloseOpNameBytes
org.nd4j.shade.protobuf.ByteString getCloseOpNameBytes()
The operation to run to close the queue.
string close_op_name = 3;- Returns:
- The bytes for closeOpName.
-
getCancelOpName
String getCancelOpName()
The operation to run to cancel the queue.
string cancel_op_name = 4;- Returns:
- The cancelOpName.
-
getCancelOpNameBytes
org.nd4j.shade.protobuf.ByteString getCancelOpNameBytes()
The operation to run to cancel the queue.
string cancel_op_name = 4;- Returns:
- The bytes for cancelOpName.
-
getQueueClosedExceptionTypesList
List<Code> getQueueClosedExceptionTypesList()
A list of exception types considered to signal a safely closed queue if raised during enqueue operations.
repeated .tensorflow.error.Code queue_closed_exception_types = 5;- Returns:
- A list containing the queueClosedExceptionTypes.
-
getQueueClosedExceptionTypesCount
int getQueueClosedExceptionTypesCount()
A list of exception types considered to signal a safely closed queue if raised during enqueue operations.
repeated .tensorflow.error.Code queue_closed_exception_types = 5;- Returns:
- The count of queueClosedExceptionTypes.
-
getQueueClosedExceptionTypes
Code getQueueClosedExceptionTypes(int index)
A list of exception types considered to signal a safely closed queue if raised during enqueue operations.
repeated .tensorflow.error.Code queue_closed_exception_types = 5;- Parameters:
index- The index of the element to return.- Returns:
- The queueClosedExceptionTypes at the given index.
-
getQueueClosedExceptionTypesValueList
List<Integer> getQueueClosedExceptionTypesValueList()
A list of exception types considered to signal a safely closed queue if raised during enqueue operations.
repeated .tensorflow.error.Code queue_closed_exception_types = 5;- Returns:
- A list containing the enum numeric values on the wire for queueClosedExceptionTypes.
-
getQueueClosedExceptionTypesValue
int getQueueClosedExceptionTypesValue(int index)
A list of exception types considered to signal a safely closed queue if raised during enqueue operations.
repeated .tensorflow.error.Code queue_closed_exception_types = 5;- Parameters:
index- The index of the value to return.- Returns:
- The enum numeric value on the wire of queueClosedExceptionTypes at the given index.
-
-