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

io.sentry.SentryLongDate Maven / Gradle / Ivy

package io.sentry;

public final class SentryLongDate extends SentryDate {
  private final long nanos;

  public SentryLongDate(final long nanos) {
    this.nanos = nanos;
  }

  @Override
  public long nanoTimestamp() {
    return nanos;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy