Class AbstractRedisAction
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.flow.transformer.redisaction.AbstractRedisAction
-
- All Implemented Interfaces:
adams.core.Destroyable,adams.core.GlobalInfoSupporter,adams.core.logging.LoggingLevelHandler,adams.core.logging.LoggingSupporter,adams.core.option.OptionHandler,adams.core.QuickInfoSupporter,adams.core.SizeOfHandler,adams.core.Stoppable,adams.core.StoppableWithFeedback,adams.flow.core.FlowContextHandler,Serializable
- Direct Known Subclasses:
BroadcastAndListen,PassThrough
public abstract class AbstractRedisAction extends adams.core.option.AbstractOptionHandler implements adams.core.QuickInfoSupporter, adams.core.StoppableWithFeedback, adams.flow.core.FlowContextHandlerAncestor for Redis sink actions.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected adams.flow.core.Actorm_FlowContextthe flow context.protected booleanm_Stoppedwhether the action has been stopped.
-
Constructor Summary
Constructors Constructor Description AbstractRedisAction()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract Class[]accepts()Returns the classes the action accepts as input.Stringcheck(RedisConnection connection, Object o)For checking the state before executing the action.protected abstract ObjectdoExecute(RedisConnection connection, Object o, adams.core.MessageCollection errors)Performs the action.Objectexecute(RedisConnection connection, Object o, adams.core.MessageCollection errors)Performs the action on the specified object.abstract Classgenerates()Returns the classes the action generates as output.adams.flow.core.ActorgetFlowContext()Returns the flow context, if any.StringgetQuickInfo()Returns a quick info about the object, which can be displayed in the GUI.protected voidinitialize()Initializes the members.booleanisStopped()Whether the execution has been stopped.voidsetFlowContext(adams.flow.core.Actor value)Sets the flow context.voidstopExecution()Stops the execution.-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, defineOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, globalInfo, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Method Detail
-
initialize
protected void initialize()
Initializes the members.- Overrides:
initializein classadams.core.option.AbstractOptionHandler
-
setFlowContext
public void setFlowContext(adams.flow.core.Actor value)
Sets the flow context.- Specified by:
setFlowContextin interfaceadams.flow.core.FlowContextHandler- Parameters:
value- the actor
-
getFlowContext
public adams.flow.core.Actor getFlowContext()
Returns the flow context, if any.- Specified by:
getFlowContextin interfaceadams.flow.core.FlowContextHandler- Returns:
- the actor, null if none available
-
getQuickInfo
public String getQuickInfo()
Returns a quick info about the object, which can be displayed in the GUI.
Default implementation returns null.- Specified by:
getQuickInfoin interfaceadams.core.QuickInfoSupporter- Returns:
- null if no info available, otherwise short string
-
accepts
public abstract Class[] accepts()
Returns the classes the action accepts as input.- Returns:
- the classes
-
generates
public abstract Class generates()
Returns the classes the action generates as output.- Returns:
- the classes
-
check
public String check(RedisConnection connection, Object o)
For checking the state before executing the action.- Parameters:
connection- the Redis connectiono- the object to process- Returns:
- null if successful, otherwise error message
-
doExecute
protected abstract Object doExecute(RedisConnection connection, Object o, adams.core.MessageCollection errors)
Performs the action.- Parameters:
connection- the Redis connectiono- the object to processerrors- for collecting errors- Returns:
- the generated object
-
execute
public Object execute(RedisConnection connection, Object o, adams.core.MessageCollection errors)
Performs the action on the specified object.- Parameters:
connection- the Redis connectiono- the object to processerrors- for collecting errors- Returns:
- the generated object
-
isStopped
public boolean isStopped()
Whether the execution has been stopped.- Specified by:
isStoppedin interfaceadams.core.StoppableWithFeedback- Returns:
- true if stopped
-
stopExecution
public void stopExecution()
Stops the execution.- Specified by:
stopExecutionin interfaceadams.core.Stoppable
-
-