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

de.otto.synapse.translator.Decoder 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.TextMessage;

import java.util.function.Function;

/**
 * A {@code Decoder} IS-A {@code Function} that is decoding objects of Type <T> into
 * {@link TextMessage TextMessages}, mostly used as an adapter to some receiver-endpoint
 * infrastructure.
 *
 * @param  the type of the source objects that are decoded into text messages.
 */
public interface Decoder extends Function {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy