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

org.glowroot.shaded.netty.channel.epoll.EpollChannelOption Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2014 The Netty Project
 *
 * The Netty Project licenses this file to you under the Apache License,
 * version 2.0 (the "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at:
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */
package org.glowroot.shaded.netty.channel.epoll;

import org.glowroot.shaded.netty.channel.ChannelOption;
import org.glowroot.shaded.netty.channel.unix.DomainSocketReadMode;

public final class EpollChannelOption extends ChannelOption {

    public static final ChannelOption TCP_CORK = valueOf("TCP_CORK");
    public static final ChannelOption SO_REUSEPORT = valueOf("SO_REUSEPORT");
    public static final ChannelOption TCP_NOTSENT_LOWAT = valueOf("TCP_NOTSENT_LOWAT");
    public static final ChannelOption TCP_KEEPIDLE = valueOf("TCP_KEEPIDLE");
    public static final ChannelOption TCP_KEEPINTVL = valueOf("TCP_KEEPINTVL");
    public static final ChannelOption TCP_KEEPCNT = valueOf("TCP_KEEPCNT");

    public static final ChannelOption DOMAIN_SOCKET_READ_MODE =
            valueOf("DOMAIN_SOCKET_READ_MODE");

    public static final ChannelOption EPOLL_MODE =
            valueOf("EPOLL_MODE");

    @SuppressWarnings({ "unused", "deprecation" })
    private EpollChannelOption(String name) {
        super(name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy