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

io.sentry.transport.NoOpTransportGate Maven / Gradle / Ivy

There is a newer version: 8.0.0-rc.4
Show newest version
package io.sentry.transport;

public final class NoOpTransportGate implements ITransportGate {

  private static final NoOpTransportGate instance = new NoOpTransportGate();

  public static NoOpTransportGate getInstance() {
    return instance;
  }

  private NoOpTransportGate() {}

  @Override
  public boolean isConnected() {
    return true;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy