netty5/transport/src
Norman Maurer c3637ff42c
AUTO_CLOSE should not be marked as deprecated. (#7967)
Motivation:

A long time ago we deprecated AUTO_CLOSE but it turned out this feature is still useful because if a write error is detected there still maybe data to read, and if we close the channel automatically we will lose data

Modifications:

- Remove `@Deprecated` tag for AUTO_CLOSE, setAutoClose(...) and isAutoClose(...)
- Fix javadocs on ChannelConfig to correctly tell the default value of AUTO_CLOSE.

Result:

Less warnings.
2018-05-24 21:25:30 +02:00
..
main/java/io/netty AUTO_CLOSE should not be marked as deprecated. (#7967) 2018-05-24 21:25:30 +02:00
test/java/io/netty Add test that we handle thread.interrupt() in NioEventLoop (#7917) 2018-05-09 08:57:53 +02:00