Package com.discoverydns.dnsapiclient.internal.util

Examples of com.discoverydns.dnsapiclient.internal.util.Stopwatch


  public Object intercept(final Object command,
      final CommandMetaData commandMetaData,
      final CommandInterceptorChain commandInterceptorChain)
      throws Throwable {
    Throwable exception = null;
    final Stopwatch stopwatch = new Stopwatch();
    stopwatch.start();
    Object response = null;
    try {
      response = commandInterceptorChain.proceed();
    } catch (final Throwable t) {
      exception = t;
    }
    stopwatch.stop();
    commandMetaData.put(COMMAND_TIME_MS,
        new Double(stopwatch.elapsedTimeMsDecimal()));
    if (exception != null) {
      throw exception;
    }
    return response;
  }
View Full Code Here

TOP

Related Classes of com.discoverydns.dnsapiclient.internal.util.Stopwatch

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.