Package org.gradle.messaging.concurrent

Examples of org.gradle.messaging.concurrent.CompositeStoppable


    public ObjectConnection getConnection() {
        return client.getConnection();
    }

    public void stop() {
        new CompositeStoppable(client, connector, executorFactory).stop();
    }
View Full Code Here


        boolean stopped = finished.awaitStop();
        if (!stopped) {
            LOGGER.lifecycle("Time-out waiting for requests. Stopping.");
        }
        new CompositeStoppable(incomingConnector, executorFactory).stop();

        getRegistryFile().delete();
    }
View Full Code Here

        processor.processTestClass(testClass);
    }

    public void stop() {
        try {
            new CompositeStoppable(processors).add(actors).add(resultProcessorActor).stop();
        } catch (DispatchException e) {
            throw UncheckedException.asUncheckedException(e.getCause());
        }
    }
View Full Code Here

TOP

Related Classes of org.gradle.messaging.concurrent.CompositeStoppable

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.