Package org.apache.hadoop.hbase.client
Interface CoprocessorDescriptor
- All Known Implementing Classes:
CoprocessorDescriptorBuilder.CoprocessorDescriptorImpl
CoprocessorDescriptor contains the details about how to build a coprocessor. This class is a pojo
so there are no checks for the details carried by this class. Use
CoprocessorDescriptorBuilder
to instantiate a CoprocessorDescriptor-
Method Summary
Modifier and TypeMethodDescriptionReturns the name of the class or interface represented by this object.Returns Path of the jar file.int
Returns The order to execute this coprocessorReturns Arbitrary key-value parameter pairs passed into the coprocessor.
-
Method Details
-
getClassName
Returns the name of the class or interface represented by this object. -
getJarPath
Returns Path of the jar file. If it's null, the class will be loaded from default classloader. -
getPriority
int getPriority()Returns The order to execute this coprocessor -
getProperties
Returns Arbitrary key-value parameter pairs passed into the coprocessor.
-