Remove reference to 5.0 release.
Motivation: Comments stating that AUTO_CLOSE will be removed in Netty 5.0 are wrong, as there is no Netty 5.0. Modifications: Removed comment. Result: No more references to Netty 5.0
This commit is contained in:
parent
3451b3cbb3
commit
8d1e46ffd1
@ -195,7 +195,7 @@ public interface ChannelConfig {
|
|||||||
ChannelConfig setAutoRead(boolean autoRead);
|
ChannelConfig setAutoRead(boolean autoRead);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated From version 5.0, {@link Channel} will not be closed on write failure.
|
* @deprecated Auto close will be removed in a future release.
|
||||||
*
|
*
|
||||||
* Returns {@code true} if and only if the {@link Channel} will be closed automatically and immediately on
|
* Returns {@code true} if and only if the {@link Channel} will be closed automatically and immediately on
|
||||||
* write failure. The default is {@code false}.
|
* write failure. The default is {@code false}.
|
||||||
@ -204,7 +204,7 @@ public interface ChannelConfig {
|
|||||||
boolean isAutoClose();
|
boolean isAutoClose();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated From version 5.0, {@link Channel} will not be closed on write failure.
|
* @deprecated Auto close will be removed in a future release.
|
||||||
*
|
*
|
||||||
* Sets whether the {@link Channel} should be closed automatically and immediately on write faillure.
|
* Sets whether the {@link Channel} should be closed automatically and immediately on write faillure.
|
||||||
* The default is {@code false}.
|
* The default is {@code false}.
|
||||||
|
@ -99,7 +99,7 @@ public class ChannelOption<T> extends AbstractConstant<ChannelOption<T>> {
|
|||||||
public static final ChannelOption<Boolean> AUTO_READ = valueOf("AUTO_READ");
|
public static final ChannelOption<Boolean> AUTO_READ = valueOf("AUTO_READ");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @deprecated From version 5.0, {@link Channel} will not be closed on write failure.
|
* @deprecated Auto close will be removed in a future release.
|
||||||
*
|
*
|
||||||
* If {@code true} then the {@link Channel} is closed automatically and immediately on write failure.
|
* If {@code true} then the {@link Channel} is closed automatically and immediately on write failure.
|
||||||
* The default value is {@code true}.
|
* The default value is {@code true}.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user