Class SilentHistoryMode
java.lang.Object
ch.tocco.nice2.persist.core.spi.exec.AbstractModeWrapper
ch.tocco.nice2.persist.history.impl.SilentHistoryMode
- All Implemented Interfaces:
ModeWrapper
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected Mode.Key
<?> getKey()
Override this to return theMode.Key
that this wrapper applies to.<A,
T> PersistTask <A, T> wrap
(PersistTask<A, T> task, Mode<?> mode) Returns a task conforming to the given mode.Methods inherited from class ch.tocco.nice2.persist.core.spi.exec.AbstractModeWrapper
getPriority
-
Constructor Details
-
SilentHistoryMode
public SilentHistoryMode()
-
-
Method Details
-
wrap
Description copied from interface:ModeWrapper
Returns a task conforming to the given mode. Gives the opportunity to wrap the given task (or create a complete new one) before executing it. The usual use case is this: If some condition holds inside the givenmode
, a new task is returned wrapping the given task with additional behaviour. If the condition does not hold, thetask
argument is returned. -
getKey
Description copied from class:AbstractModeWrapper
Override this to return theMode.Key
that this wrapper applies to. Ifnull
is returned, this mode is contributed withPriority.NORMAL
.- Overrides:
getKey
in classAbstractModeWrapper
-