All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.shaded.vertx.core.spi.VertxTracerFactory Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
/*
 * Copyright (c) 2011-2019 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */

package com.arangodb.shaded.vertx.core.spi;

import com.arangodb.shaded.vertx.core.impl.VertxBuilder;
import com.arangodb.shaded.vertx.core.json.JsonObject;
import com.arangodb.shaded.vertx.core.spi.tracing.VertxTracer;
import com.arangodb.shaded.vertx.core.tracing.TracingOptions;

/**
 * A factory for the plug-able tracing SPI.
 *
 * @author Julien Viet
 */
public interface VertxTracerFactory extends VertxServiceProvider {

  /**
   * Noop tracer factory, it can be useful for disabling metrics, e.g
   * {@code new VertxOptions().setTracingOptions(new TracingOptions().setFactory(VertxTracerFactory.NOOP))}
   */
  VertxTracerFactory NOOP = options -> VertxTracer.NOOP;

  @Override
  default void init(VertxBuilder builder) {
    TracingOptions options = builder.options().getTracingOptions();
    if (options != null && builder.tracer() == null) {
      builder.tracer(tracer(options));
    }
  }

  /**
   * Create a new {@link VertxTracer} object.

* * No specific thread and context can be expected when this method is called. * * @param options the metrics configuration option * @return the tracing implementation */ VertxTracer tracer(TracingOptions options); /** * Create an empty tracing options. * Providers can override this method to provide a custom tracing options subclass that exposes custom configuration. * It is used by the {@link com.arangodb.shaded.vertx.core.Launcher} class when creating new options when building a CLI Vert.x. * * @return new tracing options */ default TracingOptions newOptions() { return new TracingOptions(); } /** * Create tracing options from the provided {@code jsonObject}. * Providers can override this method to provide a custom tracing options subclass that exposes custom configuration. * It is used by the {@link com.arangodb.shaded.vertx.core.Launcher} class when creating new options when building a CLI Vert.x. * * @param jsonObject json provided by the user * @return new tracing options */ default TracingOptions newOptions(JsonObject jsonObject) { return new TracingOptions(jsonObject); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy