Uses of Class
org.apache.hadoop.hbase.protobuf.generated.AggregateProtos.AggregateRequest

Packages that use AggregateProtos.AggregateRequest
org.apache.hadoop.hbase.coprocessor Table of Contents 
org.apache.hadoop.hbase.protobuf.generated   
 

Uses of AggregateProtos.AggregateRequest in org.apache.hadoop.hbase.coprocessor
 

Methods in org.apache.hadoop.hbase.coprocessor with parameters of type AggregateProtos.AggregateRequest
 void AggregateImplementation.getAvg(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          Gives a Pair with first object as Sum and second object as row count, computed for a given combination of column qualifier and column family in the given row range as defined in the Scan object.
 void AggregateImplementation.getMax(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          Gives the maximum for a given combination of column qualifier and column family, in the given row range as defined in the Scan object.
 void AggregateImplementation.getMedian(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          Gives a List containing sum of values and sum of weights.
 void AggregateImplementation.getMin(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          Gives the minimum for a given combination of column qualifier and column family, in the given row range as defined in the Scan object.
 void AggregateImplementation.getRowNum(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          Gives the row count for the given column family and column qualifier, in the given row range as defined in the Scan object.
 void AggregateImplementation.getStd(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          Gives a Pair with first object a List containing Sum and sum of squares, and the second object as row count.
 void AggregateImplementation.getSum(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          Gives the sum for a given combination of column qualifier and column family, in the given row range as defined in the Scan object.
 

Uses of AggregateProtos.AggregateRequest in org.apache.hadoop.hbase.protobuf.generated
 

Fields in org.apache.hadoop.hbase.protobuf.generated with type parameters of type AggregateProtos.AggregateRequest
static com.google.protobuf.Parser<AggregateProtos.AggregateRequest> AggregateProtos.AggregateRequest.PARSER
           
 

Methods in org.apache.hadoop.hbase.protobuf.generated that return AggregateProtos.AggregateRequest
 AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.Builder.build()
           
 AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.Builder.buildPartial()
           
static AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.getDefaultInstance()
           
 AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.getDefaultInstanceForType()
           
 AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.Builder.getDefaultInstanceForType()
           
static AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.parseDelimitedFrom(InputStream input)
           
static AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           
static AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.parseFrom(byte[] data)
           
static AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           
static AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.parseFrom(com.google.protobuf.ByteString data)
           
static AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           
static AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.parseFrom(com.google.protobuf.CodedInputStream input)
           
static AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           
static AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.parseFrom(InputStream input)
           
static AggregateProtos.AggregateRequest AggregateProtos.AggregateRequest.parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry)
           
 

Methods in org.apache.hadoop.hbase.protobuf.generated that return types with arguments of type AggregateProtos.AggregateRequest
 com.google.protobuf.Parser<AggregateProtos.AggregateRequest> AggregateProtos.AggregateRequest.getParserForType()
           
 

Methods in org.apache.hadoop.hbase.protobuf.generated with parameters of type AggregateProtos.AggregateRequest
 AggregateProtos.AggregateResponse AggregateProtos.AggregateService.BlockingInterface.getAvg(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request)
           
abstract  void AggregateProtos.AggregateService.getAvg(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetAvg(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Interface.getAvg(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetAvg(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Stub.getAvg(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
           
 AggregateProtos.AggregateResponse AggregateProtos.AggregateService.BlockingInterface.getMax(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request)
           
abstract  void AggregateProtos.AggregateService.getMax(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetMax(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Interface.getMax(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetMax(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Stub.getMax(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
           
 AggregateProtos.AggregateResponse AggregateProtos.AggregateService.BlockingInterface.getMedian(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request)
           
abstract  void AggregateProtos.AggregateService.getMedian(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetMedian(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Interface.getMedian(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetMedian(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Stub.getMedian(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
           
 AggregateProtos.AggregateResponse AggregateProtos.AggregateService.BlockingInterface.getMin(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request)
           
abstract  void AggregateProtos.AggregateService.getMin(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetMin(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Interface.getMin(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetMin(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Stub.getMin(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
           
 AggregateProtos.AggregateResponse AggregateProtos.AggregateService.BlockingInterface.getRowNum(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request)
           
abstract  void AggregateProtos.AggregateService.getRowNum(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetRowNum(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Interface.getRowNum(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetRowNum(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Stub.getRowNum(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
           
 AggregateProtos.AggregateResponse AggregateProtos.AggregateService.BlockingInterface.getStd(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request)
           
abstract  void AggregateProtos.AggregateService.getStd(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetStd(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Interface.getStd(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetStd(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Stub.getStd(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
           
 AggregateProtos.AggregateResponse AggregateProtos.AggregateService.BlockingInterface.getSum(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request)
           
abstract  void AggregateProtos.AggregateService.getSum(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetSum(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Interface.getSum(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
          rpc GetSum(.AggregateRequest) returns (.AggregateResponse);
 void AggregateProtos.AggregateService.Stub.getSum(com.google.protobuf.RpcController controller, AggregateProtos.AggregateRequest request, com.google.protobuf.RpcCallback<AggregateProtos.AggregateResponse> done)
           
 AggregateProtos.AggregateRequest.Builder AggregateProtos.AggregateRequest.Builder.mergeFrom(AggregateProtos.AggregateRequest other)
           
static AggregateProtos.AggregateRequest.Builder AggregateProtos.AggregateRequest.newBuilder(AggregateProtos.AggregateRequest prototype)
           
 



Copyright © 2007–2015 The Apache Software Foundation. All rights reserved.