Uses of Class
org.frankframework.receivers.RawMessageWrapper
Packages that use RawMessageWrapper
Package
Description
-
Uses of RawMessageWrapper in org.frankframework.core
Methods in org.frankframework.core that return RawMessageWrapperModifier and TypeMethodDescriptionIMessageBrowser.browseMessage
(String storageKey) Retrieves the message, but does not delete.IHasProcessState.changeProcessState
(RawMessageWrapper<M> message, ProcessState toState, String reason) Change the processState of the message to the specified state, if that state is supported.ITransactionalStorage.getMessage
(String storageKey) Retrieves and deletes the message.ICorrelatedPullingListener.getRawMessage
(String correlationId, Map<String, Object> threadContext) Retrieves messages from queue or other channel, but retrieves only messages with the specified correlationId.IPullingListener.getRawMessage
(Map<String, Object> threadContext) Retrieves messages from queue or other channel, but does no processing on it.IPushingListener.wrapRawMessage
(M rawMessage, PipeLineSession session) Wrap a raw message in a MessageWrapper.Methods in org.frankframework.core with parameters of type RawMessageWrapperModifier and TypeMethodDescriptionvoid
IListener.afterMessageProcessed
(PipeLineResult processResult, RawMessageWrapper<M> rawMessage, PipeLineSession pipeLineSession) Called to perform actions (like committing or sending a reply) after a message has been processed by the Pipeline.IHasProcessState.changeProcessState
(RawMessageWrapper<M> message, ProcessState toState, String reason) Change the processState of the message to the specified state, if that state is supported.IListener.extractMessage
(RawMessageWrapper<M> rawMessage, Map<String, Object> context) Extracts data from message obtained fromIPullingListener.getRawMessage(Map)
orIPushingListener.wrapRawMessage(Object, PipeLineSession)
.int
IKnowsDeliveryCount.getDeliveryCount
(RawMessageWrapper<M> rawMessage) void
IMessageHandler.processRawMessage
(IListener<M> origin, RawMessageWrapper<M> message, PipeLineSession session, boolean duplicatesAlreadyChecked) Will use listener to performIListener.extractMessage(org.frankframework.receivers.RawMessageWrapper<M>, java.util.Map<java.lang.String, java.lang.Object>)
andIListener.afterMessageProcessed(org.frankframework.core.PipeLineResult, org.frankframework.receivers.RawMessageWrapper<M>, org.frankframework.core.PipeLineSession)
IMessageHandler.processRequest
(IListener<M> origin, RawMessageWrapper<M> rawMessage, Message message, PipeLineSession session) Alternative to functions above, will NOT useIListener.extractMessage(org.frankframework.receivers.RawMessageWrapper<M>, java.util.Map<java.lang.String, java.lang.Object>)
. -
Uses of RawMessageWrapper in org.frankframework.http
Methods in org.frankframework.http that return RawMessageWrapperModifier and TypeMethodDescriptionPushingListenerAdapter.wrapRawMessage
(Message rawMessage, PipeLineSession session) Methods in org.frankframework.http with parameters of type RawMessageWrapperModifier and TypeMethodDescriptionvoid
PushingListenerAdapter.afterMessageProcessed
(PipeLineResult processResult, RawMessageWrapper<Message> rawMessage, PipeLineSession pipeLineSession) PushingListenerAdapter.extractMessage
(RawMessageWrapper<Message> rawMessage, Map<String, Object> context) -
Uses of RawMessageWrapper in org.frankframework.jdbc
Methods in org.frankframework.jdbc that return RawMessageWrapperModifier and TypeMethodDescriptionAbstractJdbcMessageBrowser.browseMessage
(String storageKey) protected RawMessageWrapper<M>
JdbcListener.changeProcessState
(Connection connection, RawMessageWrapper<M> rawMessage, ProcessState toState, String reason) JdbcListener.changeProcessState
(RawMessageWrapper<M> rawMessage, ProcessState toState, String reason) protected RawMessageWrapper<M>
JdbcTableListener.changeProcessState
(Connection connection, RawMessageWrapper<M> rawMessage, ProcessState toState, String reason) protected RawMessageWrapper<M>
JdbcListener.extractRawMessage
(ResultSet rs) This method returns aMessageWrapper
containing contents of the message stored in the database.protected RawMessageWrapper<Serializable>
MessageStoreListener.extractRawMessage
(ResultSet rs) JdbcTransactionalStorage.getMessage
(String storageKey) protected RawMessageWrapper<M>
JdbcListener.getRawMessage
(Connection conn, Map<String, Object> threadContext) JdbcListener.getRawMessage
(Map<String, Object> threadContext) protected RawMessageWrapper<String>
SimpleJdbcListener.getRawMessage
(Connection conn, Map<String, Object> threadContext) SimpleJdbcListener.getRawMessage
(Map<String, Object> threadContext) protected abstract RawMessageWrapper<M>
AbstractJdbcMessageBrowser.retrieveObject
(String storageKey, ResultSet rs, int columnIndex) protected RawMessageWrapper<M>
JdbcTableMessageBrowser.retrieveObject
(String storageKey, ResultSet rs, int columnIndex) protected RawMessageWrapper<S>
JdbcTransactionalStorage.retrieveObject
(String storageKey, ResultSet rs, int columnIndex) Methods in org.frankframework.jdbc with parameters of type RawMessageWrapperModifier and TypeMethodDescriptionprotected <M> void
JdbcListener.addAdditionalQueryFieldsToSession
(RawMessageWrapper<M> rawMessage, Map<String, Object> context) protected void
JdbcListener.addAdditionalValuesToMessageWrapper
(ResultSet rs, RawMessageWrapper<M> mw) void
JdbcListener.afterMessageProcessed
(PipeLineResult processResult, RawMessageWrapper<M> rawMessage, PipeLineSession pipeLineSession) void
SimpleJdbcListener.afterMessageProcessed
(PipeLineResult processResult, RawMessageWrapper<String> rawMessage, PipeLineSession pipeLineSession) protected RawMessageWrapper<M>
JdbcListener.changeProcessState
(Connection connection, RawMessageWrapper<M> rawMessage, ProcessState toState, String reason) JdbcListener.changeProcessState
(RawMessageWrapper<M> rawMessage, ProcessState toState, String reason) protected RawMessageWrapper<M>
JdbcTableListener.changeProcessState
(Connection connection, RawMessageWrapper<M> rawMessage, ProcessState toState, String reason) JdbcListener.extractMessage
(RawMessageWrapper<M> rawMessage, Map<String, Object> context) MessageStoreListener.extractMessage
(RawMessageWrapper<Serializable> rawMessageWrapper, Map<String, Object> context) SimpleJdbcListener.extractMessage
(RawMessageWrapper<String> rawMessage, Map<String, Object> context) protected String
JdbcListener.getKeyFromRawMessage
(RawMessageWrapper<M> rawMessage) -
Uses of RawMessageWrapper in org.frankframework.receivers
Subclasses of RawMessageWrapper in org.frankframework.receiversModifier and TypeClassDescriptionclass
Wrapper for messages that are not serializable.Methods in org.frankframework.receivers that return RawMessageWrapperModifier and TypeMethodDescriptionReceiver.changeProcessState
(RawMessageWrapper<M> message, ProcessState toState, String reason) Change message process state, via the listener of the receiver.FrankListener.wrapRawMessage
(Message rawMessage, PipeLineSession session) JavaListener.wrapRawMessage
(M rawMessage, PipeLineSession session) Methods in org.frankframework.receivers with parameters of type RawMessageWrapperModifier and TypeMethodDescriptionvoid
FrankListener.afterMessageProcessed
(PipeLineResult processResult, RawMessageWrapper<Message> rawMessage, PipeLineSession pipeLineSession) void
JavaListener.afterMessageProcessed
(PipeLineResult processResult, RawMessageWrapper<M> rawMessage, PipeLineSession pipeLineSession) Receiver.changeProcessState
(RawMessageWrapper<M> message, ProcessState toState, String reason) Change message process state, via the listener of the receiver.FrankListener.extractMessage
(RawMessageWrapper<Message> rawMessage, Map<String, Object> context) JavaListener.extractMessage
(RawMessageWrapper<M> rawMessage, Map<String, Object> context) Receiver.getCachedErrorMessage
(RawMessageWrapper<M> rawMessageWrapper) int
Receiver.getDeliveryCount
(RawMessageWrapper<M> rawMessage) Get the delivery-count for the message.protected boolean
Receiver.isDeliveryRetryLimitExceededAfterMessageProcessed
(RawMessageWrapper<M> messageWrapper) Returns true if the message should no longer be retried after it has failed in processing.protected boolean
Receiver.isDeliveryRetryLimitExceededBeforeMessageProcessing
(RawMessageWrapper<M> rawMessageWrapper, PipeLineSession session, boolean manualRetry) returns true if message should not be processed when it is delivered.void
Receiver.moveInProcessToError
(RawMessageWrapper<M> rawMessageWrapper, PipeLineSession session, Instant receivedDate, String comments, org.springframework.transaction.TransactionDefinition txDef) Move a message from the "in process" state or storage, to the error state or storage.void
Receiver.processRawMessage
(IListener<M> origin, RawMessageWrapper<M> rawMessage, PipeLineSession session, boolean retryStatusAlreadyChecked) This method processes the raw message from the listener.Receiver.processRequest
(IListener<M> origin, RawMessageWrapper<M> rawMessage, Message message, PipeLineSession session) Process the received message withIMessageHandler.processRequest(IListener, RawMessageWrapper, Message, PipeLineSession)
.protected Receiver.ProcessStatusCacheItem
Receiver.updateMessageReceiveCount
(RawMessageWrapper<M> rawMessageWrapper) Call this method exactly once per every try to process a message to initialize the internally cached receive-count for the messageId.Constructors in org.frankframework.receivers with parameters of type RawMessageWrapperModifierConstructorDescriptionMessageWrapper
(RawMessageWrapper<M> rawMessageWrapper, Message message) MessageWrapper
(RawMessageWrapper<M> rawMessageWrapper, Message message, String messageId, String correlationId) -
Uses of RawMessageWrapper in org.frankframework.util
Methods in org.frankframework.util with parameters of type RawMessageWrapperModifier and TypeMethodDescriptionstatic String
MessageBrowsingUtil.getMessageText
(RawMessageWrapper<?> rawMessageWrapper, IListener listener)