当前位置: 首页>>代码示例>>Java>>正文


Java ChannelMatcher类代码示例

本文整理汇总了Java中io.netty.channel.group.ChannelMatcher的典型用法代码示例。如果您正苦于以下问题:Java ChannelMatcher类的具体用法?Java ChannelMatcher怎么用?Java ChannelMatcher使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ChannelMatcher类属于io.netty.channel.group包,在下文中一共展示了ChannelMatcher类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: sendToGroup

import io.netty.channel.group.ChannelMatcher; //导入依赖的package包/类
/**
 * Send to group.
 *
 * @param groupName
 *          the group key
 * @param message
 *          the message
 * @param matcher
 *          the matcher
 * @param listeners
 *          the listeners
 */
public void sendToGroup(String groupName, byte[] message, ChannelMatcher matcher,
    ChannelFutureListener... listeners) {
  groupCheck(groupName);
  checkMessage(message);

  if (!groups.containsKey(groupName)) {
    log.warn("No group {} to send message {}", groupName, message);
    return;
  }

  ChannelGroup group = groups.get(groupName);

  ChannelFutureListener[] all = utils.prependArray(f -> log((ChannelGroupFuture) f, groupName), listeners);
  ChannelGroupFuture cf = group.writeAndFlush(message, matcher);
  cf.addListeners(all);
}
 
开发者ID:mrstampy,项目名称:gameboot,代码行数:29,代码来源:NettyConnectionRegistry.java

示例2: createMatcher

import io.netty.channel.group.ChannelMatcher; //导入依赖的package包/类
private ChannelMatcher createMatcher(SystemIdKey... except) {
  if (except == null || except.length == 0) return NOOP_MATCHER;

  List<Channel> exceptions = new ArrayList<>();
  for (SystemIdKey key : except) {
    Channel c = get(key);
    if (c != null) exceptions.add(c);
  }

  return exceptions.isEmpty() ? NOOP_MATCHER : new ChannelMatcher() {

    @Override
    public boolean matches(Channel channel) {
      return !exceptions.contains(channel);
    }
  };
}
 
开发者ID:mrstampy,项目名称:gameboot,代码行数:18,代码来源:NettyConnectionRegistry.java

示例3: sendToAllExcept

import io.netty.channel.group.ChannelMatcher; //导入依赖的package包/类
@Override
public void sendToAllExcept(final List<Command> commands, final Object nonReciver) {
    clients.writeAndFlush(commands, new ChannelMatcher() {
        @Override
        public boolean matches(final Channel candidate) {
            return candidate != nonReciver;
        }
    });
}
 
开发者ID:saxsys,项目名称:SynchronizeFX,代码行数:10,代码来源:NettyBasicServer.java

示例4: sendToAll

import io.netty.channel.group.ChannelMatcher; //导入依赖的package包/类
/**
 * Send to all.
 *
 * @param message
 *          the message
 * @param matcher
 *          the matcher
 * @param listeners
 *          the listeners
 */
public void sendToAll(String message, ChannelMatcher matcher, ChannelFutureListener... listeners) {
  sendToGroup(ALL, message, matcher, listeners);
}
 
开发者ID:mrstampy,项目名称:gameboot,代码行数:14,代码来源:NettyConnectionRegistry.java


注:本文中的io.netty.channel.group.ChannelMatcher类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。