Package eu.admire.gateway.engine

Examples of eu.admire.gateway.engine.DISPELGraphExecutor


    }
   
    private void processLocally(RequestContext context, Graph graph)
    {
        LOG.debug("Processing graph locally.");
        DISPELGraphExecutor processor = GatewayBeanFactory.getInstance().createDispelGraphExecutor();    
        processor.setRequestContext(context);
        processor.registerListener(new LoggingProgressListener());
        processor.registerListener(new ResultDataSourceListener(this));
        processor.registerListener(new ProcessingErrorListener(this, mErrors));
       
        //here register listener to final workflow - radek
        LOG.debug("registering workflow listener.");
        processor.registerListener(new WorkflowListener(context));
       
        LOG.debug("Initialising local process.");
        mFail = !processor.initialise(graph) || mFail;
        mLocalProcesses.add(processor);
    }
View Full Code Here

TOP

Related Classes of eu.admire.gateway.engine.DISPELGraphExecutor

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.