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