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

de.otto.synapse.translator.Encoder Maven / Gradle / Ivy

Go to download

A library used at otto.de to implement Spring Boot based event-sourcing microservices.

There is a newer version: 0.33.1
Show newest version
package de.otto.synapse.translator;

import de.otto.synapse.message.Message;
import de.otto.synapse.message.TextMessage;

import java.util.function.Function;

/**
 * An {@code Encoder} IS-A {@code Function} that is encoding a text message into some target type,
 * mostly used as an adapter to some sender-endpoint infrastructure.
 *
 * @param  the target type of the encoder
 */
public interface Encoder extends Function, T> {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy