
co.spraybot.messagerunner.ReportStreamParcel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of message-runner Show documentation
Show all versions of message-runner Show documentation
A micro-framework to allow easily passing specific Vert.x messages to specific addresses for processing of those messages.
The newest version!
package co.spraybot.messagerunner;
import io.vertx.core.json.JsonObject;
/**
* @since 0.1.0
*/
public interface ReportStreamParcel extends Parcel {
/**
* @return The name of the ReportStream that needs to be executed.
*/
String getReportStreamName();
/**
* @return An arbitrary JsonObject that details the data that is required to satisfy the requirements of the
* ReportStream
*/
JsonObject getPayload();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy