Versions Compared

Key

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

...

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

API approach 2:

...

single minimal facade

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

...