com.rollbar.notifier.provider.timestamp.TimestampProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rollbar-java Show documentation
Show all versions of rollbar-java Show documentation
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();
}
}