Set the request thread ID.
()
| 1168 | * Set the request thread ID. |
| 1169 | */ |
| 1170 | @SuppressWarnings("deprecation") |
| 1171 | public void setRequestThread() { |
| 1172 | Thread t = Thread.currentThread(); |
| 1173 | threadId = t.getId(); |
| 1174 | getRequestProcessor().setWorkerThreadName(t.getName()); |
| 1175 | } |
| 1176 | |
| 1177 | /** |
| 1178 | * Check if the current thread is the request thread. |
no test coverage detected