Check if the request body has been fully read. @return true if finished
()
| 957 | * @return {@code true} if finished |
| 958 | */ |
| 959 | public boolean isFinished() { |
| 960 | AtomicBoolean result = new AtomicBoolean(false); |
| 961 | action(ActionCode.REQUEST_BODY_FULLY_READ, result); |
| 962 | return result.get(); |
| 963 | } |
| 964 | |
| 965 | /** |
| 966 | * Check if relative redirects are supported. |
no test coverage detected