Class EpollChannelOptionFactory
java.lang.Object
io.micronaut.http.netty.channel.converters.EpollChannelOptionFactory
- All Implemented Interfaces:
ChannelOptionFactory
@Internal
@Singleton
@Requires(classes=io.netty.channel.epoll.Epoll.class,
condition=EpollAvailabilityCondition.class)
public class EpollChannelOptionFactory
extends Object
implements ChannelOptionFactory
Creates channel options.
- Author:
- croudet
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionio.netty.channel.ChannelOption<?>
channelOption
(String name) Creates a channel options.convertValue
(io.netty.channel.ChannelOption<?> option, Object value, Environment env) Converts the specified value given the channel option type.
-
Constructor Details
-
EpollChannelOptionFactory
public EpollChannelOptionFactory()
-
-
Method Details
-
channelOption
Description copied from interface:ChannelOptionFactory
Creates a channel options.- Specified by:
channelOption
in interfaceChannelOptionFactory
- Parameters:
name
- The name of the option.- Returns:
- A channel option.
-
convertValue
Description copied from interface:ChannelOptionFactory
Converts the specified value given the channel option type.- Specified by:
convertValue
in interfaceChannelOptionFactory
- Parameters:
option
- The channel option.value
- The value to convert.env
- The environment use for the conversion.- Returns:
- The converted value.
-