Package io.netty.channel.rxtx
Interface RxtxChannelConfig
-
- All Superinterfaces:
ChannelConfig
@Deprecated public interface RxtxChannelConfig extends ChannelConfig
Deprecated.this transport will be removed in the next major version.A configuration class for RXTX device connections.Available options
In addition to the options provided byChannelConfig,DefaultRxtxChannelConfigallows the following options in the option map:
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classRxtxChannelConfig.DatabitsDeprecated.static classRxtxChannelConfig.ParitybitDeprecated.static classRxtxChannelConfig.StopbitsDeprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description intgetBaudrate()Deprecated.RxtxChannelConfig.DatabitsgetDatabits()Deprecated.RxtxChannelConfig.ParitybitgetParitybit()Deprecated.intgetReadTimeout()Deprecated.Return the maximal time (in ms) to block and wait for something to be ready to read.RxtxChannelConfig.StopbitsgetStopbits()Deprecated.intgetWaitTimeMillis()Deprecated.booleanisDtr()Deprecated.booleanisRts()Deprecated.RxtxChannelConfigsetAllocator(ByteBufAllocator allocator)Deprecated.Set theByteBufAllocatorwhich is used for the channel to allocate buffers.RxtxChannelConfigsetAutoClose(boolean autoClose)Deprecated.Sets whether theChannelshould be closed automatically and immediately on write failure.RxtxChannelConfigsetAutoRead(boolean autoRead)Deprecated.Sets ifChannelHandlerContext.read()will be invoked automatically so that a user application doesn't need to call it at all.RxtxChannelConfigsetBaudrate(int baudrate)Deprecated.Sets the baud rate (ie. bits per second) for communication with the serial device.RxtxChannelConfigsetConnectTimeoutMillis(int connectTimeoutMillis)Deprecated.Sets the connect timeout of the channel in milliseconds.RxtxChannelConfigsetDatabits(RxtxChannelConfig.Databits databits)Deprecated.Sets the number of data bits to use to make up each character sent to the serial device.RxtxChannelConfigsetDtr(boolean dtr)Deprecated.Sets whether the serial device supports the Data Terminal Ready signal, used for flow controlRxtxChannelConfigsetMaxMessagesPerRead(int maxMessagesPerRead)Deprecated.RxtxChannelConfigsetMessageSizeEstimator(MessageSizeEstimator estimator)Deprecated.Set theMessageSizeEstimatorwhich is used for the channel to detect the size of a message.RxtxChannelConfigsetParitybit(RxtxChannelConfig.Paritybit paritybit)Deprecated.Sets the type of parity bit to be used when communicating with the serial device.RxtxChannelConfigsetReadTimeout(int readTimeout)Deprecated.Sets the maximal time (in ms) to block while try to read from the serial port.RxtxChannelConfigsetRecvByteBufAllocator(RecvByteBufAllocator allocator)Deprecated.Set theRecvByteBufAllocatorwhich is used for the channel to allocate receive buffers.RxtxChannelConfigsetRts(boolean rts)Deprecated.Sets whether the serial device supports the Request To Send signal, used for flow controlRxtxChannelConfigsetStopbits(RxtxChannelConfig.Stopbits stopbits)Deprecated.Sets the number of stop bits to include at the end of every character to aid the serial device in synchronising with the data.RxtxChannelConfigsetWaitTimeMillis(int waitTimeMillis)Deprecated.Sets the time to wait after opening the serial port and before sending it any configuration information or data.RxtxChannelConfigsetWriteBufferHighWaterMark(int writeBufferHighWaterMark)Deprecated.Sets the high water mark of the write buffer.RxtxChannelConfigsetWriteBufferLowWaterMark(int writeBufferLowWaterMark)Deprecated.Sets the low water mark of the write buffer.RxtxChannelConfigsetWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)Deprecated.Set theWriteBufferWaterMarkwhich is used for setting the high and low water mark of the write buffer.RxtxChannelConfigsetWriteSpinCount(int writeSpinCount)Deprecated.Sets the maximum loop count for a write operation untilWritableByteChannel.write(ByteBuffer)returns a non-zero value.-
Methods inherited from interface io.netty.channel.ChannelConfig
getAllocator, getConnectTimeoutMillis, getMaxMessagesPerRead, getMessageSizeEstimator, getOption, getOptions, getRecvByteBufAllocator, getWriteBufferHighWaterMark, getWriteBufferLowWaterMark, getWriteBufferWaterMark, getWriteSpinCount, isAutoClose, isAutoRead, setOption, setOptions
-
-
-
-
Method Detail
-
setBaudrate
RxtxChannelConfig setBaudrate(int baudrate)
Deprecated.Sets the baud rate (ie. bits per second) for communication with the serial device. The baud rate will include bits for framing (in the form of stop bits and parity), such that the effective data rate will be lower than this value.- Parameters:
baudrate- The baud rate (in bits per second)
-
setStopbits
RxtxChannelConfig setStopbits(RxtxChannelConfig.Stopbits stopbits)
Deprecated.Sets the number of stop bits to include at the end of every character to aid the serial device in synchronising with the data.- Parameters:
stopbits- The number of stop bits to use
-
setDatabits
RxtxChannelConfig setDatabits(RxtxChannelConfig.Databits databits)
Deprecated.Sets the number of data bits to use to make up each character sent to the serial device.- Parameters:
databits- The number of data bits to use
-
setParitybit
RxtxChannelConfig setParitybit(RxtxChannelConfig.Paritybit paritybit)
Deprecated.Sets the type of parity bit to be used when communicating with the serial device.- Parameters:
paritybit- The type of parity bit to be used
-
getBaudrate
int getBaudrate()
Deprecated.- Returns:
- The configured baud rate, defaulting to 115200 if unset
-
getStopbits
RxtxChannelConfig.Stopbits getStopbits()
Deprecated.- Returns:
- The configured stop bits, defaulting to
RxtxChannelConfig.Stopbits.STOPBITS_1if unset
-
getDatabits
RxtxChannelConfig.Databits getDatabits()
Deprecated.- Returns:
- The configured data bits, defaulting to
RxtxChannelConfig.Databits.DATABITS_8if unset
-
getParitybit
RxtxChannelConfig.Paritybit getParitybit()
Deprecated.- Returns:
- The configured parity bit, defaulting to
RxtxChannelConfig.Paritybit.NONEif unset
-
isDtr
boolean isDtr()
Deprecated.- Returns:
- true if the serial device should support the Data Terminal Ready signal
-
setDtr
RxtxChannelConfig setDtr(boolean dtr)
Deprecated.Sets whether the serial device supports the Data Terminal Ready signal, used for flow control- Parameters:
dtr- true if DTR is supported, false otherwise
-
isRts
boolean isRts()
Deprecated.- Returns:
- true if the serial device should support the Ready to Send signal
-
setRts
RxtxChannelConfig setRts(boolean rts)
Deprecated.Sets whether the serial device supports the Request To Send signal, used for flow control- Parameters:
rts- true if RTS is supported, false otherwise
-
getWaitTimeMillis
int getWaitTimeMillis()
Deprecated.- Returns:
- The number of milliseconds to wait between opening the serial port and initialising.
-
setWaitTimeMillis
RxtxChannelConfig setWaitTimeMillis(int waitTimeMillis)
Deprecated.Sets the time to wait after opening the serial port and before sending it any configuration information or data. A value of 0 indicates that no waiting should occur.- Parameters:
waitTimeMillis- The number of milliseconds to wait, defaulting to 0 (no wait) if unset- Throws:
java.lang.IllegalArgumentException- if the supplied value is < 0
-
setReadTimeout
RxtxChannelConfig setReadTimeout(int readTimeout)
Deprecated.Sets the maximal time (in ms) to block while try to read from the serial port. Default is 1000ms
-
getReadTimeout
int getReadTimeout()
Deprecated.Return the maximal time (in ms) to block and wait for something to be ready to read.
-
setConnectTimeoutMillis
RxtxChannelConfig setConnectTimeoutMillis(int connectTimeoutMillis)
Deprecated.Description copied from interface:ChannelConfigSets the connect timeout of the channel in milliseconds. If theChanneldoes not support connect operation, this property is not used at all, and therefore will be ignored.- Specified by:
setConnectTimeoutMillisin interfaceChannelConfig- Parameters:
connectTimeoutMillis- the connect timeout in milliseconds.0to disable.
-
setMaxMessagesPerRead
@Deprecated RxtxChannelConfig setMaxMessagesPerRead(int maxMessagesPerRead)
Deprecated.- Specified by:
setMaxMessagesPerReadin interfaceChannelConfig
-
setWriteSpinCount
RxtxChannelConfig setWriteSpinCount(int writeSpinCount)
Deprecated.Description copied from interface:ChannelConfigSets the maximum loop count for a write operation untilWritableByteChannel.write(ByteBuffer)returns a non-zero value. It is similar to what a spin lock is used for in concurrency programming. It improves memory utilization and write throughput depending on the platform that JVM runs on. The default value is16.- Specified by:
setWriteSpinCountin interfaceChannelConfig
-
setAllocator
RxtxChannelConfig setAllocator(ByteBufAllocator allocator)
Deprecated.Description copied from interface:ChannelConfigSet theByteBufAllocatorwhich is used for the channel to allocate buffers.- Specified by:
setAllocatorin interfaceChannelConfig
-
setRecvByteBufAllocator
RxtxChannelConfig setRecvByteBufAllocator(RecvByteBufAllocator allocator)
Deprecated.Description copied from interface:ChannelConfigSet theRecvByteBufAllocatorwhich is used for the channel to allocate receive buffers.- Specified by:
setRecvByteBufAllocatorin interfaceChannelConfig
-
setAutoRead
RxtxChannelConfig setAutoRead(boolean autoRead)
Deprecated.Description copied from interface:ChannelConfigSets ifChannelHandlerContext.read()will be invoked automatically so that a user application doesn't need to call it at all. The default value istrue.- Specified by:
setAutoReadin interfaceChannelConfig
-
setAutoClose
RxtxChannelConfig setAutoClose(boolean autoClose)
Deprecated.Description copied from interface:ChannelConfigSets whether theChannelshould be closed automatically and immediately on write failure. The default istrue.- Specified by:
setAutoClosein interfaceChannelConfig
-
setWriteBufferHighWaterMark
RxtxChannelConfig setWriteBufferHighWaterMark(int writeBufferHighWaterMark)
Deprecated.Description copied from interface:ChannelConfigSets the high water mark of the write buffer. If the number of bytes queued in the write buffer exceeds this value,
Channel.isWritable()will start to returnfalse.- Specified by:
setWriteBufferHighWaterMarkin interfaceChannelConfig
-
setWriteBufferLowWaterMark
RxtxChannelConfig setWriteBufferLowWaterMark(int writeBufferLowWaterMark)
Deprecated.Description copied from interface:ChannelConfigSets the low water mark of the write buffer. Once the number of bytes queued in the write buffer exceeded the high water mark and then dropped down below this value,
Channel.isWritable()will start to returntrueagain.- Specified by:
setWriteBufferLowWaterMarkin interfaceChannelConfig
-
setWriteBufferWaterMark
RxtxChannelConfig setWriteBufferWaterMark(WriteBufferWaterMark writeBufferWaterMark)
Deprecated.Description copied from interface:ChannelConfigSet theWriteBufferWaterMarkwhich is used for setting the high and low water mark of the write buffer.- Specified by:
setWriteBufferWaterMarkin interfaceChannelConfig
-
setMessageSizeEstimator
RxtxChannelConfig setMessageSizeEstimator(MessageSizeEstimator estimator)
Deprecated.Description copied from interface:ChannelConfigSet theMessageSizeEstimatorwhich is used for the channel to detect the size of a message.- Specified by:
setMessageSizeEstimatorin interfaceChannelConfig
-
-