summaryrefslogtreecommitdiff
path: root/src/main/java/ch/hiddenalpha/unspecifiedgarbage/gateleenKludge/FailFastMetricsOptions.java
diff options
context:
space:
mode:
authorAndreas Fankhauser hiddenalpha.ch2024-05-12 12:55:07 +0200
committerAndreas Fankhauser hiddenalpha.ch2024-05-12 12:55:07 +0200
commit5cc4c2b95df9bf6998d92496ca0e0064314fba39 (patch)
treeac7d979f81a86703508ff23e2694a6b4d6bfe4d5 /src/main/java/ch/hiddenalpha/unspecifiedgarbage/gateleenKludge/FailFastMetricsOptions.java
parent1dc9f8c9db499a326ceee6cb3b48878ee17ff9fa (diff)
parent95d934e8e3918832c03f05b2fc32cb5d5272cb83 (diff)
downloadUnspecifiedGarbage-wip-LatitudeReSetup-20230620.zip
UnspecifiedGarbage-wip-LatitudeReSetup-20230620.tar.gz
Merge remote-tracking branch 'ha-public/master' into wip-LatitudeReSetup-20230620wip-LatitudeReSetup-20230620
Diffstat (limited to 'src/main/java/ch/hiddenalpha/unspecifiedgarbage/gateleenKludge/FailFastMetricsOptions.java')
-rw-r--r--src/main/java/ch/hiddenalpha/unspecifiedgarbage/gateleenKludge/FailFastMetricsOptions.java35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/main/java/ch/hiddenalpha/unspecifiedgarbage/gateleenKludge/FailFastMetricsOptions.java b/src/main/java/ch/hiddenalpha/unspecifiedgarbage/gateleenKludge/FailFastMetricsOptions.java
new file mode 100644
index 0000000..c911061
--- /dev/null
+++ b/src/main/java/ch/hiddenalpha/unspecifiedgarbage/gateleenKludge/FailFastMetricsOptions.java
@@ -0,0 +1,35 @@
+package ch.hiddenalpha.unspecifiedgarbage.gateleenKludge;
+
+import io.vertx.core.json.JsonObject;
+import io.vertx.core.metrics.MetricsOptions;
+import io.vertx.core.spi.VertxMetricsFactory;
+
+
+public class FailFastMetricsOptions extends io.vertx.core.metrics.MetricsOptions {
+
+ private final String dbgMsg;
+
+ public FailFastMetricsOptions( String dbgMsg ){ this.dbgMsg = dbgMsg; }
+
+ public FailFastMetricsOptions(){ this(failCtor()); }
+
+ private FailFastMetricsOptions( MetricsOptions o ){ this(failCtor()); }
+
+ private FailFastMetricsOptions( JsonObject json ){ this(failCtor()); }
+
+ private static String failCtor(){ throw new IllegalStateException("Do NOT use this ctor!"); }
+
+ @Override public boolean isEnabled(){ throw new UnsupportedOperationException(dbgMsg); }
+
+ @Override public MetricsOptions setEnabled(boolean en){ throw new UnsupportedOperationException(dbgMsg); }
+
+ @Override public VertxMetricsFactory getFactory(){ throw new UnsupportedOperationException(dbgMsg); }
+
+ @Override public MetricsOptions setFactory( VertxMetricsFactory f ){ throw new UnsupportedOperationException(dbgMsg); }
+
+ @Override public JsonObject toJson(){ throw new UnsupportedOperationException(dbgMsg); }
+
+ @Override public String toString(){ throw new UnsupportedOperationException(dbgMsg); }
+
+}
+