strolch/li.strolch.performancetest
Robert von Burg 48caa84903 [Major] Refactored SystemAction in privileges
Simplified the API, removed the privileged user - now always use the
agent system user for running system actions. One method has no return
value and one has a return value. Now it is easy to perform a system
action using:

    runAsAgent(ctx -> {
      // do work			
    });

    String result = runAsAgentWithResult(ctx -> {
      // do work
      return "done";
    });

    // execute a SystemAction
    runAsAgent(action);

    // execute a SystemActionWithResult
    String result = runAsAgentWithResult(actionWithResult);
2016-09-29 15:54:30 +02:00
..
src [Major] Refactored SystemAction in privileges 2016-09-29 15:54:30 +02:00
.gitignore [New] added a performance test project to see how many TX/s are possible 2015-04-21 15:05:28 +02:00
LICENSE [New] added a performance test project to see how many TX/s are possible 2015-04-21 15:05:28 +02:00
README.md [New] added a performance test project to see how many TX/s are possible 2015-04-21 15:05:28 +02:00
pom.xml [Project] Set new snapshot version 1.4.0-SNAPSHOT 2016-09-22 11:33:15 +02:00

README.md

li.strolch.performancetest

Strolch project to run performance tests, either manually or automatically