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

it.netgrid.bauer.impl.StreamMessageFactory Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy