public final class ChannelMatchers
extends java.lang.Object
ChannelMatcher
实现。
Modifier and Type | Method and Description |
---|---|
static ChannelMatcher |
all()
返回 ChannelMatcher 匹配所有Channel 秒。
|
static ChannelMatcher |
compose(ChannelMatcher... matchers)
返回给定 ChannelMatcher 的组合。
|
static ChannelMatcher |
invert(ChannelMatcher matcher)
反转给定的 ChannelMatcher 。
|
static ChannelMatcher |
is(Channel channel)
返回 ChannelMatcher 匹配给定Channel 。
|
static ChannelMatcher |
isInstanceOf(java.lang.Class<? extends Channel> clazz)
返回 ChannelMatcher 匹配所有Channel 个 S中的子类型的给定类的一个实例。
|
static ChannelMatcher |
isNonServerChannel()
返回 ChannelMatcher 匹配所有Channel 个 S中的类型不 ServerChannel 。
|
static ChannelMatcher |
isNot(Channel channel)
返回一个 ChannelMatcher ,它与除给定的所有Channel 相匹配。
|
static ChannelMatcher |
isNotInstanceOf(java.lang.Class<? extends Channel> clazz)
返回一个 ChannelMatcher ,匹配所有Channel ,它们不是给定类的子类型的实例。
|
static ChannelMatcher |
isServerChannel()
返回 ChannelMatcher 匹配所有Channel 个 S中的类型ServerChannel 。
|
public static ChannelMatcher all()
ChannelMatcher
匹配所有Channel
秒。
public static ChannelMatcher isNot(Channel channel)
ChannelMatcher
,与给定的所有Channel
相匹配。
public static ChannelMatcher is(Channel channel)
ChannelMatcher
匹配给定Channel
。
public static ChannelMatcher isInstanceOf(java.lang.Class<? extends Channel> clazz)
ChannelMatcher
匹配所有Channel
个 S中的子类型的给定类的一个实例。
public static ChannelMatcher isNotInstanceOf(java.lang.Class<? extends Channel> clazz)
ChannelMatcher
匹配所有Channel
个 S中的未分型给定类的一个实例。
public static ChannelMatcher isServerChannel()
ChannelMatcher
匹配所有Channel
个 S中的类型ServerChannel
。
public static ChannelMatcher isNonServerChannel()
ChannelMatcher
匹配所有Channel
个 S中的类型不 ServerChannel
。
public static ChannelMatcher invert(ChannelMatcher matcher)
ChannelMatcher
。
public static ChannelMatcher compose(ChannelMatcher... matchers)
ChannelMatcher
s. This means all
ChannelMatcher
must return
true
to match.
Copyright © 2008–2018 The Netty Project. All rights reserved.