Example usage for io.netty.channel.group ChannelGroupFuture interface-usage

List of usage examples for io.netty.channel.group ChannelGroupFuture interface-usage

Introduction

In this page you can find the example usage for io.netty.channel.group ChannelGroupFuture interface-usage.

Usage

From source file com.caricah.iotracah.server.netty.channelgroup.IotChannelGroupFuture.java

/**
 * @author <a href="mailto:bwire@caricah.com"> Peter Bwire </a>
 * @version 1.0 2/23/16
 */
public class IotChannelGroupFuture extends DefaultPromise<Void> implements ChannelGroupFuture {

From source file com.snh.chat.core.group.DefaultChannelGroupFuture.java

/**
 * The default {@link ChannelGroupFuture} implementation.
 */
final class DefaultChannelGroupFuture extends DefaultPromise<Void> implements ChannelGroupFuture {

    private final ChannelGroup group;

From source file com.snh.chat.core.group.VoidChannelGroupFuture.java

final class VoidChannelGroupFuture implements ChannelGroupFuture {

    private static final Iterator<ChannelFuture> EMPTY = Collections.<ChannelFuture>emptyList().iterator();
    private final ChannelGroup group;

    VoidChannelGroupFuture(ChannelGroup group) {