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

com.rollbar.notifier.fingerprint.FingerprintGenerator Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.0.0-alpha.1
Show newest version
package com.rollbar.notifier.fingerprint;

import com.rollbar.api.payload.data.Data;

/**
 * Interface to generate the fingerprint of the {@link Data data} to send to Rollbar.
 */
public interface FingerprintGenerator {

  /**
   * Generates the fingerprint for the data.
   *
   * @param data the data.
   * @return the fingerprint.
   */
  String from(Data data);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy