Uses of Interface
org.frankframework.core.ITransactionalStorage
Package
Description
-
Uses of ITransactionalStorage in org.frankframework.jdbc
Modifier and TypeClassDescriptionclass
DummyTransactionalStorage<S extends Serializable>
Deprecated, for removal: This API element is subject to removal in a future version.class
JdbcTransactionalStorage<S extends Serializable>
Implements a message log (JdbcMessageLog
) or error store (JdbcErrorStorage
) that uses database table IBISSTORE.class
Send messages to the IBISSTORE database table to have them processed exactly-once by another adapter which will read the messages using aMessageStoreListener
. -
Uses of ITransactionalStorage in org.frankframework.jms
Modifier and TypeClassDescriptionclass
JmsTransactionalStorage<S extends Serializable>
Implements a message log (JmsMessageLog
) or error store (JmsErrorStorage
) that uses JMS technology. -
Uses of ITransactionalStorage in org.frankframework.pipes
Modifier and TypeMethodDescriptionvoid
AsyncSenderWithListenerPipe.setMessageLog
(ITransactionalStorage<?> messageLog) void
MessageSendingPipe.setMessageLog
(ITransactionalStorage<?> messageLog) log of all messages sentvoid
SenderPipe.setMessageLog
(ITransactionalStorage<?> messageLog) -
Uses of ITransactionalStorage in org.frankframework.receivers
Modifier and TypeMethodDescriptionvoid
Receiver.setErrorStorage
(ITransactionalStorage<Serializable> errorStorage) Storage to keep track of messages that failed processingvoid
Receiver.setMessageLog
(ITransactionalStorage<Serializable> messageLog) Storage to keep track of all messages processed correctly