Package kieker.analysis.plugin.reader
Class AbstractReaderPlugin
java.lang.Object
kieker.analysis.analysisComponent.AbstractAnalysisComponent
kieker.analysis.plugin.AbstractPlugin
kieker.analysis.plugin.reader.AbstractReaderPlugin
- All Implemented Interfaces:
IAnalysisComponent,IPlugin,IReaderPlugin
- Direct Known Subclasses:
AbstractRawDataReader,AbstractStringRegistryReaderPlugin,AsciiLogReader,BinaryLogReader,DbReader,FSReader,JmsReader,JmxReader,ListReader,PipeReader,RawDataReaderPlugin,TimeReader
@Deprecated public abstract class AbstractReaderPlugin extends AbstractPlugin implements IReaderPlugin
Deprecated.
since 1.15.1 old plugin api
This class should be used as a base for every reader used within Kieker. For filter plugins, the class
AbstractFilterPlugin should be used instead.- Since:
- 1.5
- Author:
- Nils Christian Ehmke
-
Nested Class Summary
Nested classes/interfaces inherited from interface kieker.analysis.plugin.IPlugin
IPlugin.PluginInputPortReference, IPlugin.STATE -
Field Summary
Fields inherited from class kieker.analysis.analysisComponent.AbstractAnalysisComponent
CONFIG_NAME, configuration, logger, projectContext, recordsTimeUnitFromProjectContext -
Constructor Summary
Constructors Constructor Description AbstractReaderPlugin(Configuration configuration, IProjectContext projectContext)Deprecated.Each Plugin requires a constructor with a Configuration object and a IProjectContext. -
Method Summary
Modifier and Type Method Description booleaninit()Deprecated.Initiates the start of a component.Methods inherited from class kieker.analysis.plugin.AbstractPlugin
areAllRepositoryPortsConnected, connect, connect, deliver, getAllDisplayNames, getAllInputPortNames, getAllOutputPortNames, getAllRepositoryPortNames, getConnectedPlugins, getCurrentRepositories, getDefaultConfiguration, getIncomingPlugins, getPluginDescription, getPluginName, getRepository, getState, isConnectionAllowed, notifyNewIncomingConnection, notifyNewOutgoingConnection, shutdown, startMethods inherited from class kieker.analysis.analysisComponent.AbstractAnalysisComponent
getCurrentConfiguration, getNameMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface kieker.analysis.plugin.IPlugin
connect, getAllDisplayNames, getAllInputPortNames, getAllOutputPortNames, getAllRepositoryPortNames, getConnectedPlugins, getCurrentConfiguration, getCurrentRepositories, getName, getPluginDescription, getPluginName, getState, terminate
-
Constructor Details
-
AbstractReaderPlugin
Deprecated.Each Plugin requires a constructor with a Configuration object and a IProjectContext.- Parameters:
configuration- The configuration for this component.projectContext- The project context for this component. The component will be registered.
-
-
Method Details
-
init
public boolean init()Deprecated.Initiates the start of a component. This method is called once when a AnalysisController's run() method is called. This implementation must not be blocking! Asynchronous consumers would spawn (an) asynchronous thread(s) in this method.
-