Make Channel*Invoker package private

This commit is contained in:
Norman Maurer 2013-02-11 09:30:31 +01:00
parent aca0d5fa68
commit 707f910d2b
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ package io.netty.channel;
/**
* Interface which is shared by others which need to fire inbound events
*/
public interface ChannelInboundInvoker {
interface ChannelInboundInvoker {
/**
* A {@link Channel} was registered to its {@link EventLoop}.

View File

@ -20,7 +20,7 @@ import java.net.SocketAddress;
/**
* Interface which is shared by others which need to execute outbound logic.
*/
public interface ChannelOutboundInvoker {
interface ChannelOutboundInvoker {
/**
* Bind to the given {@link SocketAddress} and notify the {@link ChannelFuture} once the operation completes,