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

org.apache.hudi.org.apache.hbase.thirdparty.io.netty.channel.udt.UdtChannelConfig Maven / Gradle / Ivy

There is a newer version: 1.0.0-beta1
Show newest version
/*
 * Copyright 2012 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:
 *
 *   https://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.apache.hbase.thirdparty.io.netty.channel.udt;

import com.barchart.udt.OptionUDT;
import com.barchart.udt.TypeUDT;
import org.apache.hbase.thirdparty.io.netty.buffer.ByteBufAllocator;
import org.apache.hbase.thirdparty.io.netty.channel.ChannelConfig;
import org.apache.hbase.thirdparty.io.netty.channel.ChannelException;
import org.apache.hbase.thirdparty.io.netty.channel.ChannelOption;
import org.apache.hbase.thirdparty.io.netty.channel.MessageSizeEstimator;
import org.apache.hbase.thirdparty.io.netty.channel.RecvByteBufAllocator;
import org.apache.hbase.thirdparty.io.netty.channel.WriteBufferWaterMark;

/**
 * A {@link ChannelConfig} for a {@link UdtChannel}.
 * 

*

Available options

* In addition to the options provided by {@link ChannelConfig}, * {@link UdtChannelConfig} allows the following options in the option map: *

*

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
NameAssociated setter method
{@link ChannelOption#SO_REUSEADDR}{@link #setReuseAddress(boolean)}
{@link ChannelOption#SO_RCVBUF}{@link #setReceiveBufferSize(int)}
{@link ChannelOption#SO_SNDBUF}{@link #setSendBufferSize(int)}
{@link ChannelOption#SO_REUSEADDR}{@link #setReuseAddress(boolean)}
{@link ChannelOption#SO_LINGER}{@link #setSoLinger(int)}
{@link ChannelOption#SO_RCVBUF}{@link #setReceiveBufferSize(int)}
{@link ChannelOption#SO_SNDBUF}{@link #setSendBufferSize(int)}
{@link UdtChannelOption#PROTOCOL_RECEIVE_BUFFER_SIZE}{@link #setProtocolReceiveBufferSize(int)}
{@link UdtChannelOption#PROTOCOL_SEND_BUFFER_SIZE}{@link #setProtocolSendBufferSize(int)}
{@link UdtChannelOption#SYSTEM_RECEIVE_BUFFER_SIZE}{@link #setSystemReceiveBufferSize(int)}
{@link UdtChannelOption#SYSTEM_SEND_BUFFER_SIZE}{@link #setSystemSendBufferSize(int)}
*

* Note that {@link TypeUDT#DATAGRAM} message oriented channels treat * {@code "receiveBufferSize"} and {@code "sendBufferSize"} as maximum message * size. If received or sent message does not fit specified sizes, * {@link ChannelException} will be thrown. * * @deprecated The UDT transport is no longer maintained and will be removed. */ @Deprecated public interface UdtChannelConfig extends ChannelConfig { /** * Gets {@link OptionUDT#Protocol_Receive_Buffer_Size} */ int getProtocolReceiveBufferSize(); /** * Gets {@link OptionUDT#Protocol_Send_Buffer_Size} */ int getProtocolSendBufferSize(); /** * Gets the {@link ChannelOption#SO_RCVBUF} option. */ int getReceiveBufferSize(); /** * Gets the {@link ChannelOption#SO_SNDBUF} option. */ int getSendBufferSize(); /** * Gets the {@link ChannelOption#SO_LINGER} option. */ int getSoLinger(); /** * Gets {@link OptionUDT#System_Receive_Buffer_Size} */ int getSystemReceiveBufferSize(); /** * Gets {@link OptionUDT#System_Send_Buffer_Size} */ int getSystemSendBufferSize(); /** * Gets the {@link ChannelOption#SO_REUSEADDR} option. */ boolean isReuseAddress(); @Override UdtChannelConfig setConnectTimeoutMillis(int connectTimeoutMillis); @Override @Deprecated UdtChannelConfig setMaxMessagesPerRead(int maxMessagesPerRead); @Override UdtChannelConfig setWriteSpinCount(int writeSpinCount); @Override UdtChannelConfig setAllocator(ByteBufAllocator allocator); @Override UdtChannelConfig setRecvByteBufAllocator(RecvByteBufAllocator allocator); @Override UdtChannelConfig setAutoRead(boolean autoRead); @Override UdtChannelConfig setAutoClose(boolean autoClose); @Override UdtChannelConfig setWriteBufferHighWaterMark(int writeBufferHighWaterMark); @Override UdtChannelConfig setWriteBufferLowWaterMark(int writeBufferLowWaterMark); @Override UdtChannelConfig setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark); @Override UdtChannelConfig setMessageSizeEstimator(MessageSizeEstimator estimator); /** * Sets {@link OptionUDT#Protocol_Receive_Buffer_Size} */ UdtChannelConfig setProtocolReceiveBufferSize(int size); /** * Sets {@link OptionUDT#Protocol_Send_Buffer_Size} */ UdtChannelConfig setProtocolSendBufferSize(int size); /** * Sets the {@link ChannelOption#SO_RCVBUF} option. */ UdtChannelConfig setReceiveBufferSize(int receiveBufferSize); /** * Sets the {@link ChannelOption#SO_REUSEADDR} option. */ UdtChannelConfig setReuseAddress(boolean reuseAddress); /** * Sets the {@link ChannelOption#SO_SNDBUF} option. */ UdtChannelConfig setSendBufferSize(int sendBufferSize); /** * Sets the {@link ChannelOption#SO_LINGER} option. */ UdtChannelConfig setSoLinger(int soLinger); /** * Sets {@link OptionUDT#System_Receive_Buffer_Size} */ UdtChannelConfig setSystemReceiveBufferSize(int size); /** * Sets {@link OptionUDT#System_Send_Buffer_Size} */ UdtChannelConfig setSystemSendBufferSize(int size); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy