Package ratpack.codahale.metrics.internal

Examples of ratpack.codahale.metrics.internal.DefaultHealthCheckResults


      } else {
        context.render(result);
      }
    } else {
      SortedMap<String, HealthCheck.Result> healthCheckResults = registry.runHealthChecks();
      HealthCheckResults wrappedHealthCheckResults = new DefaultHealthCheckResults(healthCheckResults);
      context.render(wrappedHealthCheckResults);
    }
  }
View Full Code Here

TOP

Related Classes of ratpack.codahale.metrics.internal.DefaultHealthCheckResults

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.