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

com.rollbar.notifier.provider.timestamp.TimestampProvider Maven / Gradle / Ivy

Go to download

For connecting your applications built on the JVM to Rollbar for Error Reporting

The newest version!
package com.rollbar.notifier.provider.timestamp;

import com.rollbar.notifier.provider.Provider;

/**
 * Provides the current timestamp from {@link System#currentTimeMillis}.
 */
public class TimestampProvider implements Provider {

  @Override
  public Long provide() {
    return System.currentTimeMillis();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy