Returns how many ms have elapsed since this query was created.
()
| 191 | |
| 192 | /** Returns how many ms have elapsed since this query was created. */ |
| 193 | public int processingTimeMillis() { |
| 194 | return (int) ((System.nanoTime() - start_time) / 1000000); |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * Returns the query string parameters passed in the URI. |
no test coverage detected