Application commit flag accessor. @return true if the application has committed the response
()
| 270 | * @return <code>true</code> if the application has committed the response |
| 271 | */ |
| 272 | public boolean isAppCommitted() { |
| 273 | return this.appCommitted || isCommitted() || isSuspended() || |
| 274 | ((getContentLength() > 0) && (getContentWritten() >= getContentLength())); |
| 275 | } |
| 276 | |
| 277 | |
| 278 | /** |
no test coverage detected