Package com.griddynamics.gridkit.coherence.patterns.benchmark

Examples of com.griddynamics.gridkit.coherence.patterns.benchmark.SimpleContext.touch()


  public void execute(ExecutionEnvironment<SimpleContext> executionEnvironment)
  {
    startExecution();
    // Invoke execution method.
    SimpleContext ctx = executionEnvironment.getContext();
    ctx.touch();
    executionEnvironment.setContext(ctx);
    // Save time information
    finishExecution();
  }
}
View Full Code Here


  public CommandExecutionMark execute(ExecutionEnvironment<SimpleContext> executionEnvironment)
  {
    startExecution();
   
    SimpleContext context = executionEnvironment.getContext();
    context.touch();
    executionEnvironment.setContext(context);
   
    return finishExecution();
  }
View Full Code Here

   */
  @Override
  public void execute(ExecutionEnvironment<SimpleContext> executionEnvironment) {   
    // Invoke execution method.
    SimpleContext ctx = executionEnvironment.getContext();
    ctx.touch();
    executionEnvironment.setContext(ctx);
    // Save time information
   
    //TODO restore !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    //BenchmarkSupport.reportExecution(reportBuffer, new ExecMark(execId, submitMs, submitNs));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.