Package com.volantis.xml.pipeline.sax.performance

Examples of com.volantis.xml.pipeline.sax.performance.MonitoringConfiguration


        // down the pipeline as fatalError, so it's not lost
        if (context.inErrorRecoveryMode() && !validateAttributes()) {
            return;
        }

        MonitoringConfiguration monitoringConfiguration =
                (MonitoringConfiguration) context.getPipelineConfiguration()
                .retrieveConfiguration(MonitoringConfiguration.class);

        uridFetchTransaction =
                monitoringConfiguration.getTransaction("urid-fetch");

        uridFetchTransaction.start();
        // Make sure that that the data that has been provided is valid.
        String urlAsString = null;
        try {
View Full Code Here


    // javadoc inherited from interface
    public void stopProcess() throws SAXException {
        XMLPipelineContext context = getPipelineContext();
        if (!context.inErrorRecoveryMode()) {

            MonitoringConfiguration monitoringConfiguration =
                    (MonitoringConfiguration) context.getPipelineConfiguration()
                    .retrieveConfiguration(MonitoringConfiguration.class);


            MonitoredTransaction webdTransaction =
                    monitoringConfiguration.getTransaction("webd");

            webdTransaction.start();
            PluggableHTTPManager httpManager =
                    ((WebDriverConfigurationImpl) configuration).
                    getPluggableHTTPManager(protocolString, pipelineConfiguration);
View Full Code Here

TOP

Related Classes of com.volantis.xml.pipeline.sax.performance.MonitoringConfiguration

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.