Package com.dottydingo.service.endpoint.status

Examples of com.dottydingo.service.endpoint.status.ContextStatus.startTimer()


        try
        {
            logger.debug("Starting phase {}",name);
            if(contextStatus != null)
                contextStatus.startTimer(String.format("phase:%s",name));

            executePhase(phaseContext);

            logger.debug("Completing phase {}",name);
        }
View Full Code Here


    @Override
    public void execute(C phaseContext)
    {
        ContextStatus status = contextStatusRegistry.getContextStatus(phaseContext.getRequestId());
        if(status != null)
            status.startTimer(String.format("phase:%s - queued",phase.getName()));
        super.execute(phaseContext);
    }

    @Override
    public void run(C phaseContext)
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.