Package com.github.mustachejavabenchmarks

Examples of com.github.mustachejavabenchmarks.NullWriter


    int ITERATIONS = 1000;

    for (int j = 0; j < 10; j++) {
      long start = System.currentTimeMillis();
      for (int i = 0; i < ITERATIONS; i++) {
        Writer hawriter = new StateAwareWriter<HtmlState>(new NullWriter(), new HtmlState());
        hawriter.write(value);
        hawriter.close();
      }
      long end = System.currentTimeMillis();
      System.out.println(end - start);
View Full Code Here

TOP

Related Classes of com.github.mustachejavabenchmarks.NullWriter

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.