Package org.frankframework.pipes
Class TimeoutGuardPipe
java.lang.Object
org.frankframework.core.TransactionAttributes
org.frankframework.pipes.AbstractPipe
org.frankframework.pipes.FixedForwardPipe
org.frankframework.pipes.TimeoutGuardPipe
- All Implemented Interfaces:
FrankElement,HasApplicationContext,HasName,HasTransactionAttribute,IConfigurable,IForwardTarget,IPipe,IScopeProvider,IWithParameters,NameAware,EventThrowing,org.springframework.beans.factory.Aware,org.springframework.context.ApplicationContextAware,org.springframework.context.Lifecycle
- Direct Known Subclasses:
GetTibcoQueues,SendTibcoMessage
Deprecated.
Extension to FixedForwardPipe for interrupting processing when timeout is exceeded.
- Author:
- Peter Leeuwenburgh
- Specific parameters
- timeout When a parameter with name timeout is present, it is used instead of the timeout specified by the attribute
-
Field Summary
Fields inherited from class org.frankframework.pipes.AbstractPipe
parameterNamesMustBeUniqueFields inherited from class org.frankframework.core.TransactionAttributes
logFields inherited from interface org.frankframework.core.IPipe
LONG_DURATION_MONITORING_EVENT, MESSAGE_SIZE_MONITORING_EVENT, PIPE_EXCEPTION_MONITORING_EVENT -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondoPipe(Message message, PipeLineSession session) Deprecated.This is where the action takes place.abstract PipeRunResultdoPipeWithTimeoutGuarded(Message input, PipeLineSession session) Deprecated.doPipe wrapped around a TimeoutGuardintDeprecated.booleanDeprecated.protected voidkillPipe()Deprecated.optional implementation to kill additional threads if the pipe may have created those.voidsetThrowException(boolean b) Deprecated.Iftrue, a piperunexception is thrown. otherwise the output is only logged as an error (and returned in a xml string with 'error' tags)voidsetTimeout(int i) Deprecated.timeout in seconds of obtaining a resultMethods inherited from class org.frankframework.pipes.FixedForwardPipe
configure, getParameterValue, setIfParam, setIfValue, setOnlyIfSessionKey, setOnlyIfValue, setSkipOnEmptyInput, setUnlessSessionKey, setUnlessValue, skipPipeMethods inherited from class org.frankframework.pipes.AbstractPipe
addForward, addParameter, consumesSessionVariable, createBean, findForward, getAdapter, getEventSourceName, getForwards, getParameterList, hasRegisteredForward, isRunning, registerEvent, setApplicationContext, setChompCharSize, setDurationThreshold, setElementToMove, setElementToMoveChain, setElementToMoveSessionKey, setEmptyInputReplacement, setGetInputFromFixedValue, setGetInputFromSessionKey, setHideRegex, setLocker, setLogIntermediaryResults, setMaxThreads, setName, setPreserveInput, setRemoveCompactMsgNamespaces, setRestoreMovedElements, setSecLogSessionKeys, setSizeStatistics, setStoreResultInSessionKey, setWriteToSecLog, sizeStatisticsEnabled, start, stop, throwEventMethods inherited from class org.frankframework.core.TransactionAttributes
configureTransactionAttributes, isTransacted, isTransacted, setTransacted, setTransactionTimeoutMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.frankframework.core.FrankElement
addConfigWarningMethods inherited from interface org.frankframework.core.HasApplicationContext
getApplicationContext, getConfigurationClassLoaderMethods inherited from interface org.frankframework.core.HasTransactionAttribute
getTransactionAttribute, getTransactionTimeout, getTxDef, setTransactionAttributeMethods inherited from interface org.frankframework.core.IForwardTarget
getNameMethods inherited from interface org.frankframework.core.IPipe
getChompCharSize, getDurationThreshold, getElementToMove, getElementToMoveChain, getElementToMoveSessionKey, getEmptyInputReplacement, getGetInputFromFixedValue, getGetInputFromSessionKey, getHideRegex, getLocker, getLogIntermediaryResults, getMaxThreads, getSecLogSessionKeys, getStoreResultInSessionKey, isPreserveInput, isRemoveCompactMsgNamespaces, isRestoreMovedElements, isWriteToSecLog, setPipeLine, throwEvent
-
Constructor Details
-
TimeoutGuardPipe
public TimeoutGuardPipe()Deprecated.
-
-
Method Details
-
doPipe
Deprecated.Description copied from interface:IPipeThis is where the action takes place. Pipes may only throw a PipeRunException, to be handled by the caller of this object. Implementations must either consume the message, or pass it on to the next Pipe in the PipeRunResult.- Throws:
PipeRunException
-
doPipeWithTimeoutGuarded
public abstract PipeRunResult doPipeWithTimeoutGuarded(Message input, PipeLineSession session) throws PipeRunException Deprecated.doPipe wrapped around a TimeoutGuard- Throws:
PipeRunException
-
killPipe
protected void killPipe()Deprecated.optional implementation to kill additional threads if the pipe may have created those. -
setThrowException
public void setThrowException(boolean b) Deprecated.Iftrue, a piperunexception is thrown. otherwise the output is only logged as an error (and returned in a xml string with 'error' tags)- Default value
- true
-
isThrowException
public boolean isThrowException()Deprecated. -
getTimeout
public int getTimeout()Deprecated. -
setTimeout
public void setTimeout(int i) Deprecated.timeout in seconds of obtaining a result- Default value
- 30
-