Package io.netty.channel.group
Class ChannelMatchers.InvertMatcher
- java.lang.Object
-
- io.netty.channel.group.ChannelMatchers.InvertMatcher
-
- All Implemented Interfaces:
ChannelMatcher
- Enclosing class:
- ChannelMatchers
private static final class ChannelMatchers.InvertMatcher extends java.lang.Object implements ChannelMatcher
-
-
Field Summary
Fields Modifier and Type Field Description private ChannelMatcher
matcher
-
Constructor Summary
Constructors Constructor Description InvertMatcher(ChannelMatcher matcher)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
matches(Channel channel)
Returnstrue
if the operation should be also executed on the givenChannel
.
-
-
-
Field Detail
-
matcher
private final ChannelMatcher matcher
-
-
Constructor Detail
-
InvertMatcher
InvertMatcher(ChannelMatcher matcher)
-
-
Method Detail
-
matches
public boolean matches(Channel channel)
Description copied from interface:ChannelMatcher
Returnstrue
if the operation should be also executed on the givenChannel
.- Specified by:
matches
in interfaceChannelMatcher
-
-