()
| 81 | } |
| 82 | |
| 83 | public void show_stats() { |
| 84 | int n = client_thread.stats_n(); |
| 85 | for (int i = 0; i < n; ++i) |
| 86 | { |
| 87 | String name = client_thread.stats_name(i); |
| 88 | long value = client_thread.stats_value(i); |
| 89 | if (value > 0) |
| 90 | System.out.format("STAT %s=%s%n", name, value); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | @Override |
| 95 | public void event(ClientAPI_Event event) { |
no test coverage detected