
it.netgrid.bauer.impl.StreamMessageFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bauer-stream Show documentation
Show all versions of bauer-stream Show documentation
A Bauer binder supporting POSIX STDIN as events inbound and STOUT as events outbound.
package it.netgrid.bauer.impl;
import java.io.IOException;
import com.fasterxml.jackson.databind.JsonNode;
public interface StreamMessageFactory {
public StreamEvent buildEvent(JsonNode message) throws IOException;
public StreamEvent buildEvent(JsonNode message, Class eventClass) throws IOException;
public JsonNode buildMessage(StreamEvent event) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy