Make ChannelUp/DownstreamEventRunnable non-final / Move the classes in execution.filter to execution
This commit is contained in:
parent
303c1b5f79
commit
958ffa50e3
@ -16,7 +16,6 @@
|
|||||||
package io.netty.handler.execution;
|
package io.netty.handler.execution;
|
||||||
|
|
||||||
|
|
||||||
import io.netty.handler.execution.filter.ChannelEventRunnableFilter;
|
|
||||||
import io.netty.util.ExternalResourceReleasable;
|
import io.netty.util.ExternalResourceReleasable;
|
||||||
import io.netty.util.internal.ExecutorUtil;
|
import io.netty.util.internal.ExecutorUtil;
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@ import io.netty.channel.ChannelHandlerContext;
|
|||||||
/**
|
/**
|
||||||
* A {@link ChannelEventRunnable} which sends the specified {@link ChannelEvent} downstream.
|
* 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) {
|
public ChannelDownstreamEventRunnable(ChannelHandlerContext ctx, ChannelEvent e) {
|
||||||
super(ctx, e);
|
super(ctx, e);
|
||||||
|
@ -13,10 +13,7 @@
|
|||||||
* License for the specific language governing permissions and limitations
|
* License for the specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package io.netty.handler.execution.filter;
|
package io.netty.handler.execution;
|
||||||
|
|
||||||
import io.netty.handler.execution.ChannelDownstreamEventRunnable;
|
|
||||||
import io.netty.handler.execution.ChannelEventRunnable;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link ChannelEventRunnableFilter} implementation which matches {@link ChannelDownstreamEventRunnable}
|
* {@link ChannelEventRunnableFilter} implementation which matches {@link ChannelDownstreamEventRunnable}
|
@ -13,7 +13,7 @@
|
|||||||
* License for the specific language governing permissions and limitations
|
* License for the specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package io.netty.handler.execution.filter;
|
package io.netty.handler.execution;
|
||||||
|
|
||||||
import java.util.concurrent.Executor;
|
import java.util.concurrent.Executor;
|
||||||
|
|
@ -25,7 +25,7 @@ import io.netty.channel.ChannelHandlerContext;
|
|||||||
* Most users will not see this type at all because it is used by
|
* Most users will not see this type at all because it is used by
|
||||||
* {@link Executor} implementers only
|
* {@link Executor} implementers only
|
||||||
*/
|
*/
|
||||||
public final class ChannelUpstreamEventRunnable extends ChannelEventRunnable {
|
public class ChannelUpstreamEventRunnable extends ChannelEventRunnable {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -13,10 +13,7 @@
|
|||||||
* License for the specific language governing permissions and limitations
|
* License for the specific language governing permissions and limitations
|
||||||
* under the License.
|
* under the License.
|
||||||
*/
|
*/
|
||||||
package io.netty.handler.execution.filter;
|
package io.netty.handler.execution;
|
||||||
|
|
||||||
import io.netty.handler.execution.ChannelDownstreamEventRunnable;
|
|
||||||
import io.netty.handler.execution.ChannelEventRunnable;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@link ChannelEventRunnableFilter} which matches {@link ChannelDownstreamEventRunnable}
|
* {@link ChannelEventRunnableFilter} which matches {@link ChannelDownstreamEventRunnable}
|
Loading…
Reference in New Issue
Block a user