Stop the background thread that is periodically checking for session timeouts.
()
| 1098 | * Stop the background thread that is periodically checking for session timeouts. |
| 1099 | */ |
| 1100 | protected void threadStop() { |
| 1101 | if (backgroundProcessorFuture != null) { |
| 1102 | backgroundProcessorFuture.cancel(true); |
| 1103 | backgroundProcessorFuture = null; |
| 1104 | } |
| 1105 | } |
| 1106 | |
| 1107 | |
| 1108 | @Override |
no test coverage detected