All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.netty.channel.epoll.EpollUtils Maven / Gradle / Ivy

The newest version!
package io.netty.channel.epoll;

import io.netty.channel.Channel;

public class EpollUtils {

    public static void forceFlush(Channel.Unsafe unsafe) {
        if (unsafe instanceof AbstractEpollChannel.AbstractEpollUnsafe) {
            AbstractEpollChannel.AbstractEpollUnsafe epollUnsafe = (AbstractEpollChannel.AbstractEpollUnsafe) unsafe;
            epollUnsafe.epollOutReady();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy