Package org.frankframework.core
Interface IListenerConnector<M>
- All Known Implementing Classes:
SpringJmsConnector
public interface IListenerConnector<M>
Interface specifying method to configure a JMS receiver of some sort.
- Since:
- 4.8
- Author:
- Tim van der Leeuw
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionvoid
configureEndpointConnection
(IPortConnectedListener<M> listener, jakarta.jms.ConnectionFactory connectionFactory, CredentialFactory credentialFactory, jakarta.jms.Destination destination, IbisExceptionListener exceptionListener, IListenerConnector.CacheMode cacheMode, int acknowledgeMode, String selector, long receiveTimeout, long pollGuardInterval) void
start()
Start Listener-port to which the Listener is connected.void
stop()
Stop Listener-port to which the Listener is connected.
-
Field Details
-
THREAD_CONTEXT_SESSION_KEY
- See Also:
-
-
Method Details
-
configureEndpointConnection
void configureEndpointConnection(IPortConnectedListener<M> listener, jakarta.jms.ConnectionFactory connectionFactory, CredentialFactory credentialFactory, jakarta.jms.Destination destination, IbisExceptionListener exceptionListener, IListenerConnector.CacheMode cacheMode, int acknowledgeMode, String selector, long receiveTimeout, long pollGuardInterval) throws ConfigurationException - Throws:
ConfigurationException
-
start
void start()Start Listener-port to which the Listener is connected. -
stop
void stop()Stop Listener-port to which the Listener is connected.
-