/* *************************************************************************************** * Copyright (C) 2006 EsperTech, Inc. All rights reserved. * * http://www.espertech.com/esper * * http://www.espertech.com * * ---------------------------------------------------------------------------------- * * The software in this package is published under the terms of the GPL license * * a copy of which has been included with this distribution in the license.txt file. * *************************************************************************************** */ package com.espertech.esper.example.namedwinquery; import com.espertech.esper.client.EPServiceProviderManager; import com.espertech.esper.plugin.PluginLoader; import com.espertech.esper.plugin.PluginLoaderInitContext; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * PluginLoader for added this example as part of an Esper configuration file and therefore execute it during startup. */ public class NamedWindowQuerySamplePlugin implements PluginLoader { private static final Logger log = LoggerFactory.getLogger(NamedWindowQuerySamplePlugin.class); private static final String ENGINE_URI = "engineURI"; private String engineURI; private NamedWindowQueryMain main; public void init(PluginLoaderInitContext context) { if (context.getProperties().getProperty(ENGINE_URI) != null) { engineURI = context.getProperties().getProperty(ENGINE_URI); } else { engineURI = context.getEpServiceProvider().getURI(); } } public void postInitialize() { log.info("Starting NamedWindowQuery-example for engine URI '" + engineURI + "'."); try { main = new NamedWindowQueryMain(); main.runExample(true, engineURI); } catch (Exception e) { log.error("Error starting NamedWindowQuery example: " + e.getMessage()); } log.info("NamedWindowQuery-example started."); } public void destroy() { if (main != null) { EPServiceProviderManager.getProvider(engineURI).getEPAdministrator().destroyAllStatements(); } log.info("NamedWindowQuery-example stopped."); } }