本文整理汇总了Java中com.espertech.esper.epl.spec.PluggableObjectCollection.addPatternObjects方法的典型用法代码示例。如果您正苦于以下问题:Java PluggableObjectCollection.addPatternObjects方法的具体用法?Java PluggableObjectCollection.addPatternObjects怎么用?Java PluggableObjectCollection.addPatternObjects使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.espertech.esper.epl.spec.PluggableObjectCollection
的用法示例。
在下文中一共展示了PluggableObjectCollection.addPatternObjects方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setUp
import com.espertech.esper.epl.spec.PluggableObjectCollection; //导入方法依赖的package包/类
public void setUp() {
List<ConfigurationPlugInPatternObject> init = new ArrayList<ConfigurationPlugInPatternObject>();
init.add(makeGuardSpec("g", "h", SupportGuardFactory.class.getName()));
init.add(makeObserverSpec("a", "b", SupportObserverFactory.class.getName()));
PluggableObjectCollection desc = new PluggableObjectCollection();
desc.addPatternObjects(init, SupportEngineImportServiceFactory.make());
desc.addObjects(PatternObjectHelper.getBuiltinPatternObjects());
service = new PatternObjectResolutionServiceImpl(desc);
}
示例2: tryInvalid
import com.espertech.esper.epl.spec.PluggableObjectCollection; //导入方法依赖的package包/类
private void tryInvalid(List<ConfigurationPlugInPatternObject> config) {
try {
PluggableObjectCollection desc = new PluggableObjectCollection();
desc.addPatternObjects(config, SupportEngineImportServiceFactory.make());
service = new PatternObjectResolutionServiceImpl(desc);
fail();
} catch (ConfigurationException ex) {
// expected
}
}
示例3: setUp
import com.espertech.esper.epl.spec.PluggableObjectCollection; //导入方法依赖的package包/类
public void setUp()
{
List<ConfigurationPlugInPatternObject> init = new ArrayList<ConfigurationPlugInPatternObject>();
init.add(makeGuardSpec("g", "h", SupportGuardFactory.class.getName()));
init.add(makeObserverSpec("a", "b", SupportObserverFactory.class.getName()));
PluggableObjectCollection desc = new PluggableObjectCollection();
desc.addPatternObjects(init);
desc.addObjects(PatternObjectHelper.getBuiltinPatternObjects());
service = new PatternObjectResolutionServiceImpl(desc);
}
示例4: tryInvalid
import com.espertech.esper.epl.spec.PluggableObjectCollection; //导入方法依赖的package包/类
private void tryInvalid(List<ConfigurationPlugInPatternObject> config)
{
try
{
PluggableObjectCollection desc = new PluggableObjectCollection();
desc.addPatternObjects(config);
service = new PatternObjectResolutionServiceImpl(desc);
fail();
}
catch (ConfigurationException ex)
{
// expected
}
}