Package org.gradle.internal.progress

Examples of org.gradle.internal.progress.OperationIdentifier


            if (state == State.started) {
                throw new IllegalStateException("This operation has already been started.");
            }
            assertNotCompleted();
            state = State.started;
            OperationIdentifier id = hierarchy.start();
            listener.started(new ProgressStartEvent(id.getId(), id.getParentId(), timeProvider.getCurrentTime(), category, description, shortDescription, loggingHeader, toStatus(status)));
        }
View Full Code Here

TOP

Related Classes of org.gradle.internal.progress.OperationIdentifier

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.