Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

    IgniteMetrics metrics();

}

...

Proposed APIs: Interfaces for existing metrics

IgniteMetric

package org.apache.ignite.metric;

...

/** Updatable simple long value metric. */
@IgniteExperimental
public interface LongValueMetric extends LongSumMetric {
    /** Sets long metric value. */
    void value(long value);
}

API

...

alternative: single minimal facade

Instead of the interfeces set above, we could bring only a minimal metric management interface.

...