()
| 41 | } |
| 42 | |
| 43 | public boolean checkTimeout() |
| 44 | { |
| 45 | if(System.currentTimeMillis() - connection.getLastReceivedTime() > Constants.TIMEOUT_DROP) |
| 46 | { |
| 47 | return true; |
| 48 | } |
| 49 | |
| 50 | return false; |
| 51 | } |
| 52 | |
| 53 | public boolean checkStayAliveTime() |
| 54 | { |
no test coverage detected