Changes between Version 413 and Version 414 of WikiStart
- Timestamp:
- 05/15/21 10:51:29 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v413 v414 982 982 The simplerunner writes log information, including the final state, to the stdout. The last log line normally is something like {{{INFO:protocol ended normally: {"SAOPState": .....} }}}. You can parse the text starting at the {{{ { }}} using the standard jackson parser. 983 983 984 == Limitations 985 SimpleRunner has a number of restrictions, compared to a run using a runserver and partyserver 986 987 * With stand-alone runner, your parties are run together in a single 988 classloader. The main implication is that there may arise version conflicts 989 between parties. 990 * Stand-alone runner does NOT enforce the time deadline. Parties may 991 continue running indefinitely and thus bog down the JVM and stalling 992 tournaments. 993 994 984 995 == Running == 985 996