Reset this request, returning all action objects to the pool.
()
| 375 | * Reset this request, returning all action objects to the pool. |
| 376 | */ |
| 377 | public void reset() { |
| 378 | while (!actions.isEmpty()) { |
| 379 | try { |
| 380 | AttributeInfo info = actions.removeFirst(); |
| 381 | info.recycle(); |
| 382 | actionPool.addLast(info); |
| 383 | } catch (Exception e) { |
| 384 | log.error(sm.getString("deltaRequest.removeUnable"), e); |
| 385 | } |
| 386 | } |
| 387 | } |
| 388 | |
| 389 | /** |
| 390 | * Get the session identifier. |
no test coverage detected