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

co.spraybot.messagerunner.ReportStreamParcel Maven / Gradle / Ivy

Go to download

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