Changeset 24 for simplerunner/src/main/java/geniusweb
- Timestamp:
- 10/06/20 13:12:20 (4 years ago)
- Location:
- simplerunner/src/main/java/geniusweb/simplerunner
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
simplerunner/src/main/java/geniusweb/simplerunner/BasicConnection.java
r21 r24 43 43 * from us. Must be called first. 44 44 * 45 * @param handler a Listener<OUT>that can handle send actions.45 * @param newhandler a Listener<OUT> that can handle send actions. 46 46 * 47 47 */ -
simplerunner/src/main/java/geniusweb/simplerunner/NegoRunner.java
r21 r24 36 36 /** 37 37 * 38 * @param settings 39 * @param connectionfactory 40 * @param logger 38 * @param settings the {@link NegoSettings} 39 * @param connectionfactory the {@link ProtocolToPartyConnFactory} 40 * @param logger the {@link Reporter} to log problems 41 41 * @param maxruntime limit in millisecs. Ignored if 0 42 42 */ … … 54 54 } 55 55 56 /** 57 * 58 * @return true if the runner has finished 59 */ 56 60 public boolean isProperlyStopped() { 57 61 return properlyStopped; … … 88 92 /** 89 93 * Separate so that we can intercept this when mocking, as this will crash 90 * on mocks 94 * on mocks because {@link #jackson} can not handle mocks. 91 95 * 92 * @param level 93 * @param state 96 * @param level the log {@link Level} 97 * @param state the {@link NegoState} to log 94 98 */ 95 99 protected void logFinal(Level level, NegoState state) { … … 102 106 } 103 107 108 /** 109 * The main runner 110 * 111 * @param args should have 1 argument, the settings.json file to be used. 112 * @throws IOException if problem occurs 113 */ 104 114 public static void main(String[] args) throws IOException { 105 115 if (args.length != 1) {
Note:
See TracChangeset
for help on using the changeset viewer.