()
| 105 | } |
| 106 | |
| 107 | public boolean checkTimeout() |
| 108 | { |
| 109 | if(System.currentTimeMillis() - connection.getLastReceivedTime() > Constants.TIMEOUT_DROP) |
| 110 | { |
| 111 | return true; |
| 112 | } |
| 113 | |
| 114 | return false; |
| 115 | } |
| 116 | |
| 117 | public boolean checkStayAliveTime() |
| 118 | { |
no test coverage detected