Flushes any buffered data in the framer to the sink.
()
| 305 | * Flushes any buffered data in the framer to the sink. |
| 306 | */ |
| 307 | @Override |
| 308 | public void flush() { |
| 309 | if (buffer != null && buffer.readableBytes() > 0) { |
| 310 | commitToSink(false, true); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | /** |
| 315 | * Indicates whether or not this framer has been closed via a call to either |
nothing calls this directly
no test coverage detected