org.hbase.async.generated
Interface RPCPB.RequestHeaderOrBuilder

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

public static interface RPCPB.RequestHeaderOrBuilder
extends com.google.protobuf.MessageLiteOrBuilder


Method Summary
 int getCallId()
          optional uint32 call_id = 1;
 RPCPB.CellBlockMeta getCellBlockMeta()
          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;
 TracingPB.RPCTInfo getTraceInfo()
          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.MessageLiteOrBuilder
getDefaultInstanceForType, 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

TracingPB.RPCTInfo getTraceInfo()
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

RPCPB.CellBlockMeta getCellBlockMeta()
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 © 2010-2015, The Async HBase Authors