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

de.otto.synapse.endpoint.AbstractMessageEndpoint 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.endpoint;

import de.otto.synapse.endpoint.receiver.MessageLogReceiverEndpoint;
import de.otto.synapse.endpoint.receiver.MessageQueueReceiverEndpoint;
import de.otto.synapse.endpoint.sender.MessageSenderEndpoint;
import de.otto.synapse.message.TextMessage;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

import static java.util.Objects.requireNonNull;

/**
 * Endpoint that is used by an application to access the messaging infrastructure to send or receive messages.
 *
 * 

* Message Endpoint *

*

* The {@code MessageEndpoint} class is intended to derive {@link MessageSenderEndpoint message sender}, * {@link MessageQueueReceiverEndpoint message receiver} or * {@link MessageLogReceiverEndpoint message-log receiver} endpoints. *

*

* Message Endpoint code is custom to both the application and the messaging system’s client API. * The rest of the application knows little about message formats, messaging channels, or any of * the other details of communicating with other applications via messaging. It just knows that * it has a request or piece of data to send to another application, or is expecting those from * another application. *

*

* It is the messaging endpoint code that takes that command or data, makes it into a message, * and sends it on a particular messaging channel. It is the endpoint that receives a message, * extracts the contents, and gives them to the application in a meaningful way. *

* @see EIP: Message Endpoint */ public abstract class AbstractMessageEndpoint implements MessageEndpoint { @Nonnull private final String channelName; @Nonnull private final MessageInterceptorRegistry interceptorRegistry; /** * Constructor used to create a new AbstractMessageEndpoint. * * @param channelName the name of the underlying channel / stream / queue / message log. * @param interceptorRegistry registry used to determine {@link MessageInterceptor message interceptors} for this * endpoint. */ public AbstractMessageEndpoint(final @Nonnull String channelName, final @Nonnull MessageInterceptorRegistry interceptorRegistry) { this.channelName = requireNonNull(channelName, "ChannelName must not be null"); this.interceptorRegistry = requireNonNull(interceptorRegistry); } /** * Returns the name of the channel. * *

* The channel name corresponds to the name of the underlying stream, queue or message log. *

* @return name of the channel */ @Override @Nonnull public final String getChannelName() { return channelName; } /** * Returns the {@link InterceptorChain} of the {@code MessageEndpoint}. * * @return InterceptorChain */ @Nonnull @Override public final InterceptorChain getInterceptorChain() { return interceptorRegistry.getInterceptorChain(channelName, getEndpointType()); } /** * Intercepts a message using all registered interceptors and returns the resulting message. *

* The interceptors are called in order. The result of one interceptor is propagated to the * next interceptor in the chain, until the end of the chain is reached, or one interceptor * has returned null. *

*

* If {@code null} is returned, the message must be dropped by the {@link AbstractMessageEndpoint}. *

*

* Every interceptor may transform the message, or may take additional actions like, for example, * logging, monitoring or other things. *

* * @param message the message to intercept * @return the (possibly modified) message, or null if the message should be dropped. */ @Override @Nullable public final TextMessage intercept(final @Nonnull TextMessage message) { return getInterceptorChain().intercept(message); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy