replaced broken < with < and same for gt
This commit is contained in:
parent
d6c3b3063f
commit
dd3036be02
@ -62,7 +62,7 @@ import java.util.concurrent.TimeUnit;
|
|||||||
* // for 30 seconds. The connection is closed when there is no inbound traffic
|
* // for 30 seconds. The connection is closed when there is no inbound traffic
|
||||||
* // for 60 seconds.
|
* // for 60 seconds.
|
||||||
*
|
*
|
||||||
* public class MyChannelInitializer extends {@link ChannelInitializer}<{@link Channel}> {
|
* public class MyChannelInitializer extends {@link ChannelInitializer}<{@link Channel}> {
|
||||||
* {@code @Override}
|
* {@code @Override}
|
||||||
* public void initChannel({@link Channel} channel) {
|
* public void initChannel({@link Channel} channel) {
|
||||||
* channel.pipeline().addLast("idleStateHandler", new {@link IdleStateHandler}(60, 30, 0));
|
* channel.pipeline().addLast("idleStateHandler", new {@link IdleStateHandler}(60, 30, 0));
|
||||||
|
@ -32,7 +32,7 @@ import java.util.concurrent.TimeUnit;
|
|||||||
* // The connection is closed when there is no inbound traffic
|
* // The connection is closed when there is no inbound traffic
|
||||||
* // for 30 seconds.
|
* // for 30 seconds.
|
||||||
*
|
*
|
||||||
* public class MyChannelInitializer extends {@link ChannelInitializer}<{@link Channel}> {
|
* public class MyChannelInitializer extends {@link ChannelInitializer}<{@link Channel}> {
|
||||||
* public void initChannel({@link Channel} channel) {
|
* public void initChannel({@link Channel} channel) {
|
||||||
* channel.pipeline().addLast("readTimeoutHandler", new {@link ReadTimeoutHandler}(30);
|
* channel.pipeline().addLast("readTimeoutHandler", new {@link ReadTimeoutHandler}(30);
|
||||||
* channel.pipeline().addLast("myHandler", new MyHandler());
|
* channel.pipeline().addLast("myHandler", new MyHandler());
|
||||||
|
@ -35,7 +35,7 @@ import java.util.concurrent.TimeUnit;
|
|||||||
* // The connection is closed when there is no outbound traffic
|
* // The connection is closed when there is no outbound traffic
|
||||||
* // for 30 seconds.
|
* // for 30 seconds.
|
||||||
*
|
*
|
||||||
* public class MyChannelInitializer extends {@link ChannelInitializer}<{@link Channel}> {
|
* public class MyChannelInitializer extends {@link ChannelInitializer}<{@link Channel}> {
|
||||||
* public void initChannel({@link Channel} channel) {
|
* public void initChannel({@link Channel} channel) {
|
||||||
* channel.pipeline().addLast("writeTimeoutHandler", new {@link WriteTimeoutHandler}(30);
|
* channel.pipeline().addLast("writeTimeoutHandler", new {@link WriteTimeoutHandler}(30);
|
||||||
* channel.pipeline().addLast("myHandler", new MyHandler());
|
* channel.pipeline().addLast("myHandler", new MyHandler());
|
||||||
|
@ -82,7 +82,7 @@ import java.net.SocketAddress;
|
|||||||
* <pre>
|
* <pre>
|
||||||
* // Create a new handler instance per channel.
|
* // Create a new handler instance per channel.
|
||||||
* // See {@link ChannelInitializer#initChannel(Channel)}.
|
* // See {@link ChannelInitializer#initChannel(Channel)}.
|
||||||
* public class DataServerInitializer extends {@link ChannelInitializer}<{@link Channel}> {
|
* public class DataServerInitializer extends {@link ChannelInitializer}<{@link Channel}> {
|
||||||
* {@code @Override}
|
* {@code @Override}
|
||||||
* public void initChannel({@link Channel} channel) {
|
* public void initChannel({@link Channel} channel) {
|
||||||
* channel.pipeline().addLast("handler", <b>new DataServerHandler()</b>);
|
* channel.pipeline().addLast("handler", <b>new DataServerHandler()</b>);
|
||||||
@ -104,12 +104,12 @@ import java.net.SocketAddress;
|
|||||||
*
|
*
|
||||||
* {@code @Sharable}
|
* {@code @Sharable}
|
||||||
* public class DataServerHandler extends {@link SimpleChannelInboundHandler}<Message> {
|
* public class DataServerHandler extends {@link SimpleChannelInboundHandler}<Message> {
|
||||||
* private final {@link AttributeKey}<{@link Boolean}> auth =
|
* private final {@link AttributeKey}<{@link Boolean}> auth =
|
||||||
* {@link AttributeKey#valueOf(String) AttributeKey.valueOf("auth")};
|
* {@link AttributeKey#valueOf(String) AttributeKey.valueOf("auth")};
|
||||||
*
|
*
|
||||||
* {@code @Override}
|
* {@code @Override}
|
||||||
* protected void messageReceived({@link ChannelHandlerContext} ctx, Message message) {
|
* protected void messageReceived({@link ChannelHandlerContext} ctx, Message message) {
|
||||||
* {@link Attribute}<{@link Boolean}> attr = ctx.attr(auth);
|
* {@link Attribute}<{@link Boolean}> attr = ctx.attr(auth);
|
||||||
* {@link Channel} ch = ctx.channel();
|
* {@link Channel} ch = ctx.channel();
|
||||||
*
|
*
|
||||||
* if (message instanceof LoginMessage) {
|
* if (message instanceof LoginMessage) {
|
||||||
@ -129,7 +129,7 @@ import java.net.SocketAddress;
|
|||||||
* Now that the state of the handler is attached to the {@link ChannelHandlerContext}, you can add the
|
* Now that the state of the handler is attached to the {@link ChannelHandlerContext}, you can add the
|
||||||
* same handler instance to different pipelines:
|
* same handler instance to different pipelines:
|
||||||
* <pre>
|
* <pre>
|
||||||
* public class DataServerInitializer extends {@link ChannelInitializer}<{@link Channel}> {
|
* public class DataServerInitializer extends {@link ChannelInitializer}<{@link Channel}> {
|
||||||
*
|
*
|
||||||
* private static final DataServerHandler <b>SHARED</b> = new DataServerHandler();
|
* private static final DataServerHandler <b>SHARED</b> = new DataServerHandler();
|
||||||
*
|
*
|
||||||
|
@ -88,13 +88,13 @@ import java.nio.channels.Channels;
|
|||||||
* <pre>
|
* <pre>
|
||||||
* public class FactorialHandler extends {@link ChannelHandlerAdapter} {
|
* public class FactorialHandler extends {@link ChannelHandlerAdapter} {
|
||||||
*
|
*
|
||||||
* private final {@link AttributeKey}<{@link Integer}> counter = {@link AttributeKey}.valueOf("counter");
|
* private final {@link AttributeKey}<{@link Integer}> counter = {@link AttributeKey}.valueOf("counter");
|
||||||
*
|
*
|
||||||
* // This handler will receive a sequence of increasing integers starting
|
* // This handler will receive a sequence of increasing integers starting
|
||||||
* // from 1.
|
* // from 1.
|
||||||
* {@code @Override}
|
* {@code @Override}
|
||||||
* public void channelRead({@link ChannelHandlerContext} ctx, Object msg) {
|
* public void channelRead({@link ChannelHandlerContext} ctx, Object msg) {
|
||||||
* {@link Attribute}<{@link Integer}> attr = ctx.getAttr(counter);
|
* {@link Attribute}<{@link Integer}> attr = ctx.getAttr(counter);
|
||||||
* Integer a = ctx.getAttr(counter).get();
|
* Integer a = ctx.getAttr(counter).get();
|
||||||
*
|
*
|
||||||
* if (a == null) {
|
* if (a == null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user