Tries to make room for a new message. Current implementation simply calls #makeRoomForMessage(int) and ignores the return value. Therefore, if the message can't fit into buffer, the buffer is only cleared from messages that are not being sent. @param size Size of the new message
(int size)
| 308 | * @param size Size of the new message |
| 309 | */ |
| 310 | protected void makeRoomForNewMessage(int size) { |
| 311 | makeRoomForMessage(size); |
| 312 | } |
| 313 | |
| 314 | |
| 315 | /** |
no test coverage detected