Class MultiReporter

  • All Implemented Interfaces:
    Reporter

    public class MultiReporter
    extends java.lang.Object
    implements Reporter
    Deprecated.
    As of 1.4.9 use JMH instead
    A reporter multiplexing the results to other Reporters.
    Since:
    1.3
    • Field Detail

      • reporter

        private final Reporter[] reporter
        Deprecated.
    • Constructor Detail

      • MultiReporter

        public MultiReporter​(Reporter[] reporter)
        Deprecated.
    • Method Detail

      • endBenchmark

        public void endBenchmark()
        Deprecated.
        Description copied from interface: Reporter
        Benchmark has ended. This will always be called ONCE (and only once) AFTER everything else.
        Specified by:
        endBenchmark in interface Reporter
      • metricFailed

        public void metricFailed​(Product product,
                                 java.lang.Exception e)
        Deprecated.
        Specified by:
        metricFailed in interface Reporter
      • metricRecorded

        public void metricRecorded​(Product product,
                                   double result)
        Deprecated.
        Specified by:
        metricRecorded in interface Reporter
      • startBenchmark

        public void startBenchmark()
        Deprecated.
        Description copied from interface: Reporter
        Benchmark has started. This will always be called ONCE (and only once) BEFORE everything else.
        Specified by:
        startBenchmark in interface Reporter