Package io.netty.channel.group
Class ChannelMatchers.CompositeMatcher
- java.lang.Object
-
- io.netty.channel.group.ChannelMatchers.CompositeMatcher
-
- All Implemented Interfaces:
ChannelMatcher
- Enclosing class:
- ChannelMatchers
private static final class ChannelMatchers.CompositeMatcher extends java.lang.Object implements ChannelMatcher
-
-
Field Summary
Fields Modifier and Type Field Description private ChannelMatcher[]
matchers
-
Constructor Summary
Constructors Constructor Description CompositeMatcher(ChannelMatcher... matchers)
-
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
-
matchers
private final ChannelMatcher[] matchers
-
-
Constructor Detail
-
CompositeMatcher
CompositeMatcher(ChannelMatcher... matchers)
-
-
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
-
-