Make ChannelUp/DownstreamEventRunnable non-final / Move the classes in execution.filter to execution

This commit is contained in:
Trustin Lee 2012-01-13 18:04:06 +09:00
parent 303c1b5f79
commit 958ffa50e3
6 changed files with 5 additions and 12 deletions

View File

@ -16,7 +16,6 @@
package io.netty.handler.execution;
import io.netty.handler.execution.filter.ChannelEventRunnableFilter;
import io.netty.util.ExternalResourceReleasable;
import io.netty.util.internal.ExecutorUtil;

View File

@ -22,7 +22,7 @@ import io.netty.channel.ChannelHandlerContext;
/**
* A {@link ChannelEventRunnable} which sends the specified {@link ChannelEvent} downstream.
*/
public final class ChannelDownstreamEventRunnable extends ChannelEventRunnable {
public class ChannelDownstreamEventRunnable extends ChannelEventRunnable {
public ChannelDownstreamEventRunnable(ChannelHandlerContext ctx, ChannelEvent e) {
super(ctx, e);

View File

@ -13,10 +13,7 @@
* License for the specific language governing permissions and limitations
* under the License.
*/
package io.netty.handler.execution.filter;
import io.netty.handler.execution.ChannelDownstreamEventRunnable;
import io.netty.handler.execution.ChannelEventRunnable;
package io.netty.handler.execution;
/**
* {@link ChannelEventRunnableFilter} implementation which matches {@link ChannelDownstreamEventRunnable}

View File

@ -13,7 +13,7 @@
* License for the specific language governing permissions and limitations
* under the License.
*/
package io.netty.handler.execution.filter;
package io.netty.handler.execution;
import java.util.concurrent.Executor;

View File

@ -25,7 +25,7 @@ import io.netty.channel.ChannelHandlerContext;
* Most users will not see this type at all because it is used by
* {@link Executor} implementers only
*/
public final class ChannelUpstreamEventRunnable extends ChannelEventRunnable {
public class ChannelUpstreamEventRunnable extends ChannelEventRunnable {
/**

View File

@ -13,10 +13,7 @@
* License for the specific language governing permissions and limitations
* under the License.
*/
package io.netty.handler.execution.filter;
import io.netty.handler.execution.ChannelDownstreamEventRunnable;
import io.netty.handler.execution.ChannelEventRunnable;
package io.netty.handler.execution;
/**
* {@link ChannelEventRunnableFilter} which matches {@link ChannelDownstreamEventRunnable}