diff --git a/src/main/java/org/jboss/netty/bootstrap/ClientBootstrap.java b/src/main/java/org/jboss/netty/bootstrap/ClientBootstrap.java index 6bb0922045..c415714581 100644 --- a/src/main/java/org/jboss/netty/bootstrap/ClientBootstrap.java +++ b/src/main/java/org/jboss/netty/bootstrap/ClientBootstrap.java @@ -103,6 +103,8 @@ import org.jboss.netty.channel.SimpleChannelHandler; * {@link ClientBootstrap} instances as you want to apply different settings * for different {@link Channel}s. * + * TODO: Show how to shut down a service using ChannelFactoryResource.release(). + * * @author The Netty Project (netty-dev@lists.jboss.org) * @author Trustin Lee (tlee@redhat.com) * diff --git a/src/main/java/org/jboss/netty/bootstrap/ServerBootstrap.java b/src/main/java/org/jboss/netty/bootstrap/ServerBootstrap.java index d7aa25e71f..8178b21737 100644 --- a/src/main/java/org/jboss/netty/bootstrap/ServerBootstrap.java +++ b/src/main/java/org/jboss/netty/bootstrap/ServerBootstrap.java @@ -137,6 +137,8 @@ import org.jboss.netty.channel.SimpleChannelHandler; * {@link ServerBootstrap} instances as you want to apply different settings * for different {@link Channel}s. * + * TODO: Show how to shut down a service using ChannelFactoryResource.release(). + * * @author The Netty Project (netty-dev@lists.jboss.org) * @author Trustin Lee (tlee@redhat.com) *