Package com.google.caliper.bridge

Examples of com.google.caliper.bridge.ShouldContinueMessage


            if (logMessage instanceof StopMeasurementLogMessage) {
              // TODO(lukes): this is a blocking write, perhaps we should perform it in a non
              // blocking manner to keep this thread only blocking in one place.  This would
              // complicate error handling, but may increase performance since it would free this
              // thread up to handle other messages
              streamService.writeLine(gson.toJson(new ShouldContinueMessage(!doneCollecting)));
              if (doneCollecting) {
                streamService.closeWriter();
              }
            }
            break;
View Full Code Here

TOP

Related Classes of com.google.caliper.bridge.ShouldContinueMessage

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.