Examples of LoggingProgressListener


Examples of eu.admire.gateway.core.errors.LoggingProgressListener

    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.");
View Full Code Here

Examples of org.sonatype.nexus.proxy.maven.routing.internal.task.LoggingProgressListener

   *         {@code forced=false}, return value {@code true} means this invocation did schedule a job, otherwise it
   *         did not, as another job for same repository was already running.
   */
  protected boolean doUpdatePrefixFileAsync(final boolean forced, final MavenRepository mavenRepository) {
    final UpdateRepositoryRunnable updateRepositoryJob =
        new UpdateRepositoryRunnable(new LoggingProgressListener(log), systemStatusProvider, this,
            mavenRepository);
    if (forced) {
      final boolean canceledPreviousJob =
          constrainedExecutor.mustExecute(mavenRepository.getId(), updateRepositoryJob);
      if (canceledPreviousJob) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.