Package adams.flow.source.redisaction
Class AbstractRedisAction
- java.lang.Object
-
- adams.core.logging.LoggingObject
-
- adams.core.logging.CustomLoggingLevelObject
-
- adams.core.option.AbstractOptionHandler
-
- adams.flow.source.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,Serializable
public abstract class AbstractRedisAction extends adams.core.option.AbstractOptionHandler implements adams.core.QuickInfoSupporterAncestor for Redis source actions.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AbstractRedisAction()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description Stringcheck(RedisConnection connection)For checking the state before executing the action.protected abstract ObjectdoExecute(RedisConnection connection, adams.core.MessageCollection errors)Performs the action.Objectexecute(RedisConnection connection, adams.core.MessageCollection errors)Performs the action on the specified object.abstract Classgenerates()Returns the classes the action generates as output.StringgetQuickInfo()Returns a quick info about the object, which can be displayed in the GUI.-
Methods inherited from class adams.core.option.AbstractOptionHandler
cleanUpOptions, defineOptions, destroy, finishInit, getDefaultLoggingLevel, getOptionManager, globalInfo, initialize, loggingLevelTipText, newOptionManager, reset, setLoggingLevel, toCommandLine, toString
-
Methods inherited from class adams.core.logging.LoggingObject
configureLogger, getLogger, getLoggingLevel, initializeLogging, isLoggingEnabled, sizeOf
-
-
-
-
Method Detail
-
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
-
generates
public abstract Class generates()
Returns the classes the action generates as output.- Returns:
- the classes
-
check
public String check(RedisConnection connection)
For checking the state before executing the action.- Parameters:
connection- the Redis connection- Returns:
- null if successful, otherwise error message
-
doExecute
protected abstract Object doExecute(RedisConnection connection, adams.core.MessageCollection errors)
Performs the action.- Parameters:
connection- the Redis connectionerrors- for collecting errors- Returns:
- the generated object
-
execute
public Object execute(RedisConnection connection, adams.core.MessageCollection errors)
Performs the action on the specified object.- Parameters:
connection- the Redis connectionerrors- for collecting errors- Returns:
- the generated object
-
-