Package org.gradle.tooling.internal.consumer.connection

Examples of org.gradle.tooling.internal.consumer.connection.ProgressLoggingConsumerActionExecutor


        this.loggingProvider = loggingProvider;
    }

    public ProjectConnection create(Distribution distribution, ConnectionParameters parameters) {
        ConsumerActionExecutor lazyConnection = new LazyConsumerActionExecutor(distribution, toolingImplementationLoader, loggingProvider, parameters);
        ConsumerActionExecutor progressLoggingConnection = new ProgressLoggingConsumerActionExecutor(lazyConnection, loggingProvider);
        AsyncConsumerActionExecutor asyncConnection = new DefaultAsyncConsumerActionExecutor(progressLoggingConnection, executorFactory);
        return new DefaultProjectConnection(asyncConnection, parameters);
    }
View Full Code Here

TOP

Related Classes of org.gradle.tooling.internal.consumer.connection.ProgressLoggingConsumerActionExecutor

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.