de.otto.synapse.endpoint.sender.MessageSenderEndpoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of synapse-core Show documentation
Show all versions of synapse-core Show documentation
A library used at otto.de to implement Spring Boot based event-sourcing microservices.
package de.otto.synapse.endpoint.sender;
import de.otto.synapse.endpoint.MessageEndpoint;
/**
* Endpoint that is used by an application to send messages to a messaging channel.
*
*
*
*
*
* @see EIP: Message Endpoint
*/
public interface MessageSenderEndpoint extends MessageSender, MessageEndpoint {
}