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

net.snowflake.client.jdbc.telemetry.NoOpTelemetryClient Maven / Gradle / Ivy

/*
 * Copyright (c) 2012-2019 Snowflake Computing Inc. All rights reserved.
 */
package net.snowflake.client.jdbc.telemetry;

import java.util.concurrent.CompletableFuture;
import java.util.concurrent.Future;

/** Telemetry client that is doing nothing. Mainly used in testing code */
public class NoOpTelemetryClient implements Telemetry {
  @Override
  public void addLogToBatch(TelemetryData log) {}

  @Override
  public void close() {}

  @Override
  public Future sendBatchAsync() {
    return CompletableFuture.completedFuture(true);
  }

  @Override
  public void postProcess(String queryId, String sqlState, int vendorCode, Throwable ex) {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy