Package org.gradle.launcher.daemon.protocol

Examples of org.gradle.launcher.daemon.protocol.Cancel


    public DaemonCancelForwarder(final Dispatch<? super Cancel> dispatch, BuildCancellationToken cancellationToken, final IdGenerator<?> idGenerator) {
        this.cancellationToken = cancellationToken;
        cancellationCallback = new Runnable() {
            public void run() {
                LOGGER.info("Request daemon to cancel build...");
                dispatch.dispatch(new Cancel(idGenerator.generateId()));
            }
        };
    }
View Full Code Here

TOP

Related Classes of org.gradle.launcher.daemon.protocol.Cancel

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.