Interface ComponentsPerformanceComputer.ComponentDescription

All Known Implementing Classes:
ComponentsPerformanceComputer.RegexBasedComponentDescription
Enclosing class:
ComponentsPerformanceComputer

public static interface ComponentsPerformanceComputer.ComponentDescription
Describes a component: its name and the operation(s) it provides. Used for grouping operations into components.
  • Method Summary

    Modifier and Type
    Method
    Description
    @NotNull String
    Provides the component name.
    boolean
    matches(@NotNull String operationName)
    Returns `true` if the given operation belongs to this component.
  • Method Details

    • getName

      @NotNull @NotNull String getName()
      Provides the component name. This name is to be put into the components performance information.
    • matches

      boolean matches(@NotNull @NotNull String operationName)
      Returns `true` if the given operation belongs to this component.