Package org.sqlproc.engine
Interface SqlMonitorFactory
-
public interface SqlMonitorFactoryThe factory definition, which can be used to construct theSqlMonitorinstances.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 SqlMonitorgetSqlMonitor(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
-
-