Package org.sqlproc.engine
Interface SqlMonitorFactory
-
public interface SqlMonitorFactory
The factory definition, which can be used to construct theSqlMonitor
instances.The factory can be based on Spring DI framework for example.
For more info please see the Tutorials.
- Author:
- Vladimir Hudec
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SqlMonitor
getSqlMonitor(String name, Map<String,Object> features)
The main contract of this factory.
-
-
-
Method Detail
-
getSqlMonitor
SqlMonitor getSqlMonitor(String name, Map<String,Object> features)
The main contract of this factory.- Parameters:
name
- the name of a META SQL in the meta statements file, which can be used to identify also the monitor instance itselffeatures
- the optional configuration of the SQL Processor using a Map of features- Returns:
- the instance of the SqlMonitor
-
-