Interface CoprocessorDescriptor

All Known Implementing Classes:
CoprocessorDescriptorBuilder.CoprocessorDescriptorImpl

@Public public interface CoprocessorDescriptor
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 Type
    Method
    Description
    Returns the name of the class or interface represented by this object.
    Returns Path of the jar file.
    int
    Returns The order to execute this coprocessor
    Returns 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

      Returns The order to execute this coprocessor
    • getProperties

      Returns Arbitrary key-value parameter pairs passed into the coprocessor.