org.apache.hadoop.hbase.protobuf.generated
Interface RPCProtos.RequestHeaderOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
RPCProtos.RequestHeader, RPCProtos.RequestHeader.Builder
Enclosing class:
RPCProtos

public static interface RPCProtos.RequestHeaderOrBuilder
extends com.google.protobuf.MessageOrBuilder


Method Summary
 int getCallId()
          optional uint32 call_id = 1;
 RPCProtos.CellBlockMeta getCellBlockMeta()
          optional .CellBlockMeta cell_block_meta = 5;
 RPCProtos.CellBlockMetaOrBuilder getCellBlockMetaOrBuilder()
          optional .CellBlockMeta cell_block_meta = 5;
 String getMethodName()
          optional string method_name = 3;
 com.google.protobuf.ByteString getMethodNameBytes()
          optional string method_name = 3;
 int getPriority()
          optional uint32 priority = 6;
 boolean getRequestParam()
          optional bool request_param = 4;
 TracingProtos.RPCTInfo getTraceInfo()
          optional .RPCTInfo trace_info = 2;
 TracingProtos.RPCTInfoOrBuilder getTraceInfoOrBuilder()
          optional .RPCTInfo trace_info = 2;
 boolean hasCallId()
          optional uint32 call_id = 1;
 boolean hasCellBlockMeta()
          optional .CellBlockMeta cell_block_meta = 5;
 boolean hasMethodName()
          optional string method_name = 3;
 boolean hasPriority()
          optional uint32 priority = 6;
 boolean hasRequestParam()
          optional bool request_param = 4;
 boolean hasTraceInfo()
          optional .RPCTInfo trace_info = 2;
 
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField
 
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
 

Method Detail

hasCallId

boolean hasCallId()
optional uint32 call_id = 1;
 Monotonically increasing call_id to keep track of RPC requests and their response
 


getCallId

int getCallId()
optional uint32 call_id = 1;
 Monotonically increasing call_id to keep track of RPC requests and their response
 


hasTraceInfo

boolean hasTraceInfo()
optional .RPCTInfo trace_info = 2;


getTraceInfo

TracingProtos.RPCTInfo getTraceInfo()
optional .RPCTInfo trace_info = 2;


getTraceInfoOrBuilder

TracingProtos.RPCTInfoOrBuilder getTraceInfoOrBuilder()
optional .RPCTInfo trace_info = 2;


hasMethodName

boolean hasMethodName()
optional string method_name = 3;


getMethodName

String getMethodName()
optional string method_name = 3;


getMethodNameBytes

com.google.protobuf.ByteString getMethodNameBytes()
optional string method_name = 3;


hasRequestParam

boolean hasRequestParam()
optional bool request_param = 4;
 If true, then a pb Message param follows.
 


getRequestParam

boolean getRequestParam()
optional bool request_param = 4;
 If true, then a pb Message param follows.
 


hasCellBlockMeta

boolean hasCellBlockMeta()
optional .CellBlockMeta cell_block_meta = 5;
 If present, then an encoded data block follows.
 


getCellBlockMeta

RPCProtos.CellBlockMeta getCellBlockMeta()
optional .CellBlockMeta cell_block_meta = 5;
 If present, then an encoded data block follows.
 


getCellBlockMetaOrBuilder

RPCProtos.CellBlockMetaOrBuilder getCellBlockMetaOrBuilder()
optional .CellBlockMeta cell_block_meta = 5;
 If present, then an encoded data block follows.
 


hasPriority

boolean hasPriority()
optional uint32 priority = 6;
 0 is NORMAL priority.  100 is HIGH.  If no priority, treat it as NORMAL.
 See HConstants.
 


getPriority

int getPriority()
optional uint32 priority = 6;
 0 is NORMAL priority.  100 is HIGH.  If no priority, treat it as NORMAL.
 See HConstants.
 



Copyright © 2015 The Apache Software Foundation. All Rights Reserved.