Transport adapter
Implementation
FEJ routing server provides the ability to integrate custom 3rdparty transports and use them for routing messages. For such goal server provides few interfaces for implementations:
Endpoint
is a basic interface that represents instance of some entry, which could be unique identified by routing engine for receiving or delivering messages. EndpointParams
provides unique id of such endpoint and other additional attributes, which may be useful for routing logic.
public interface Endpoint { EndpointParams getParams(); }
SourceEndpoint interface represent a provider of messages for routing engine.
public interface SourceEndpoint extends Endpoint { void setListener(SourceMessageListener listener); }
It offers the ability to register listeners SourceMessageListener
of incoming messages for external systems.
public interface SourceMessageListener { void onNewMessage(FIXFieldList message); }
DestinationEndpoint represent a target of routing rules. It allows you to pass routed massage to the certain system.
public interface DestinationEndpoint extends Endpoint { /** * Send a {@link FIXFieldList} to this adapter. If the message is sent successfully, * the method returns {@code true}. If the message cannot be sent due to a * non-fatal reason, the method returns {@code false}. The method may also * throw a RuntimeException in case of non-recoverable errors. * <p>This method may block indefinitely, depending on the implementation. * * @param message the message to send * @return whether or not the message was sent */ boolean send(FIXFieldList message); }
There is also mechanism for registering such sources and destinations into server. After registration such endpoints will be accessible for routing engine. Registration of sources and destinations are independent. It means that you can register source and destination endpoint with the same id. This is especially important for bidirectional transports like FIX, where in and out connections are identified by the same parameters. For such transports exists 'BidirectionalEndpoint' interface.
public interface BidirectionalEndpoint extends ConsumerEndpoint, ProducerEndpoint { }
Anyway, there are two separate interface for registering sources and destinations:
public interface SourceEndpointRegistry { void registerConsumer(SourceEndpoint consumer); void removeConsumer(String id); } public interface DestinationEndpointRegistry { void registerProducer(DestinationEndpoint producer); void removeProducer(String id); }
Both they are implemented by EndpointRegistryAdapter
class. it is available for accessing via Spring config:
<bean id="endpointRegistry" class="com.epam.fej.routing.endpoint.EndpointRegistryAdapter" c:destinationsRegister-ref="destinationsRegister"/>