Examples of registerStart()


Examples of com.dragome.remote.TimeCollector.registerStart()

public final class MethodFactory implements ObjectFactory
{
  public Object instantiate(ObjectBinder context, Object value, Type targetType, Class targetClass)
  {
    TimeCollector timeCollector= ServiceLocator.getInstance().getTimeCollector();
    timeCollector.registerStart("instantiate method");

    String methodSignature= (String) value;
    String className= methodSignature.substring(0, methodSignature.lastIndexOf("."));
    String methodName= methodSignature.substring(methodSignature.lastIndexOf(".") + 1, methodSignature.lastIndexOf(":"));
    int parametersCount= Integer.parseInt(methodSignature.substring(methodSignature.lastIndexOf(":") + 1));
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.