Package org.platanios.tensorflow.proto
Interface RecvBufResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RecvBufResponse
,RecvBufResponse.Builder
public interface RecvBufResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getBufPtr()
Address of source field on server.boolean
getIsDead()
True if value is 'dead' like a tensor.long
getNumBytes()
Byte length of buf_ptr field, if set.boolean
getRequireAck()
Whether the receiver should send a MarkRecvFinishedRequest to the sender to ack the message.long
getSendStartMicros()
Optional, for timeline.Any
getTransportOptions()
Optional, implementation-specific data.AnyOrBuilder
getTransportOptionsOrBuilder()
Optional, implementation-specific data.boolean
hasTransportOptions()
Optional, implementation-specific data.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getBufPtr
long getBufPtr()
Address of source field on server.
fixed64 buf_ptr = 1;
- Returns:
- The bufPtr.
-
getNumBytes
long getNumBytes()
Byte length of buf_ptr field, if set.
int64 num_bytes = 2;
- Returns:
- The numBytes.
-
getIsDead
boolean getIsDead()
True if value is 'dead' like a tensor.
bool is_dead = 3;
- Returns:
- The isDead.
-
hasTransportOptions
boolean hasTransportOptions()
Optional, implementation-specific data.
.org.platanios.tensorflow.proto.google.Any transport_options = 4;
- Returns:
- Whether the transportOptions field is set.
-
getTransportOptions
Any getTransportOptions()
Optional, implementation-specific data.
.org.platanios.tensorflow.proto.google.Any transport_options = 4;
- Returns:
- The transportOptions.
-
getTransportOptionsOrBuilder
AnyOrBuilder getTransportOptionsOrBuilder()
Optional, implementation-specific data.
.org.platanios.tensorflow.proto.google.Any transport_options = 4;
-
getSendStartMicros
long getSendStartMicros()
Optional, for timeline.
int64 send_start_micros = 5;
- Returns:
- The sendStartMicros.
-
getRequireAck
boolean getRequireAck()
Whether the receiver should send a MarkRecvFinishedRequest to the sender to ack the message.
bool require_ack = 6;
- Returns:
- The requireAck.
-
-