Package com.crawljax.metrics

Examples of com.crawljax.metrics.MetricsModule


  }

  @Override
  protected void configure() {
    LOG.debug("Configuring the core module");
    install(new MetricsModule());
    install(new ConfigurationModule(configuration));

    bind(ExitNotifier.class).toInstance(new ExitNotifier(configuration.getMaximumStates()));

    bind(ExecutorService.class).toInstance(Executors.newCachedThreadPool());
View Full Code Here


  @Override
  protected void configure() {
    LOG.debug("Configuring the core module");
    disableJulLogging();
    install(new MetricsModule());
    install(new ConfigurationModule(configuration));

    bind(ExitNotifier.class).toInstance(new ExitNotifier(configuration.getMaximumStates()));

    bind(ExecutorService.class).toInstance(Executors.newCachedThreadPool());
View Full Code Here

TOP

Related Classes of com.crawljax.metrics.MetricsModule

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.