Package org.apache.airavata.workflow.tracking.impl.state

Examples of org.apache.airavata.workflow.tracking.impl.state.DurationImpl


     * {@inheritDoc}
     *
     */
    public DurationObj computationStarted() {

        return new DurationImpl();
    }
View Full Code Here


     *
     */
    public DurationObj computationDuration(WorkflowTrackingContext context, long durationMillis,
            String... descriptionAndAnnotation) {

        DurationObj compObj = new DurationImpl(durationMillis);
        return computationFinished(context, compObj, descriptionAndAnnotation);
    }
View Full Code Here

TOP

Related Classes of org.apache.airavata.workflow.tracking.impl.state.DurationImpl

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.