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

com.rollbar.notifier.transformer.Transformer 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.transformer;

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

/**
 * Transformer interface to process the data before sending it to Rollbar..
 */
public interface Transformer {

  /**
   * Transforms the incoming data into other data that will be returned.
   *
   * @param data the data to transform.
   * @return the data transformed.
   */
  Data transform(Data data);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy