()
| 272 | } |
| 273 | |
| 274 | public boolean checkTimeout() |
| 275 | { |
| 276 | if(System.currentTimeMillis() - connection.getLastReceivedTime() > Constants.TIMEOUT_DROP) |
| 277 | { |
| 278 | return true; |
| 279 | } |
| 280 | |
| 281 | return false; |
| 282 | } |
| 283 | |
| 284 | public boolean checkStayAliveTime() |
| 285 | { |
no test coverage detected