cziegeler commented on a change in pull request #1:
URL: 
https://github.com/apache/sling-org-apache-sling-commons-metrics/pull/1#discussion_r781031554



##########
File path: src/main/java/org/apache/sling/commons/metrics/Gauge.java
##########
@@ -34,14 +43,12 @@
  * };
  * </code></pre>
  *
- * <p> A Gauge instance should be registered with OSGi ServiceRegistry with 
{@code Gauge#NAME} set
- * to Gauge name. Then the Gauge instance would be registered with 
MetricService via whiteboard
- * pattern
+
  *
  * @param <T> the type of the metric's value
  */
 @ConsumerType
-public interface Gauge<T> {
+public interface Gauge<T> extends Metric {

Review comment:
       First of all, it can't be both - its either a consumer type to be 
implemented by a consumer of that API, or it is a provider type - provided by 
the implementation. (Implementations can of course also implement consumer 
types).
   Second, by changing (extending) the existing Gauge interface, all current 
implementations will be broken as they most likely will not implement Metric.
   With Gauge now extending a ProviderType a guess that breaking change is 
hidden.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@sling.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to