Uses of Enum Class
dev.tachyonmcp.core.transport.netty.NettyIoEngine
Packages that use NettyIoEngine
Package
Description
Server, capability, network, session, and task configuration types.
Netty-based HTTP and SSE transport implementation.
-
Uses of NettyIoEngine in dev.tachyonmcp.core.server.config
Methods in dev.tachyonmcp.core.server.config that return NettyIoEngineModifier and TypeMethodDescriptionNetworkConfig.ioEngine()Returns the value of theioEnginerecord component.Methods in dev.tachyonmcp.core.server.config with parameters of type NettyIoEngineModifier and TypeMethodDescriptionNetworkConfig.Builder.ioEngine(NettyIoEngine ioEngine) Sets the Netty I/O engine; defaults toAUTO.Constructors in dev.tachyonmcp.core.server.config with parameters of type NettyIoEngineModifierConstructorDescriptionNetworkConfig(String host, int port, String endpointPath, Duration readerIdleTimeout, Duration writerIdleTimeout, int maxContentLength, @Nullable List<String> allowedOrigins, boolean allowNullOrigin, boolean allowPrivateNetworks, @Nullable List<String> allowedHeaders, NettyIoEngine ioEngine, Duration heartbeatInterval) Creates an instance of aNetworkConfigrecord class. -
Uses of NettyIoEngine in dev.tachyonmcp.core.transport.netty
Methods in dev.tachyonmcp.core.transport.netty that return NettyIoEngineModifier and TypeMethodDescriptionstatic NettyIoEngineNettyIoEngine.detect()Detects the best available transport in priority order: io_uring > epoll > kqueue > NIO.NettyServerConfig.ioEngine()Returns the value of theioEnginerecord component.static NettyIoEngineReturns the enum constant of this class with the specified name.static NettyIoEngine[]NettyIoEngine.values()Returns an array containing the constants of this enum class, in the order they are declared.Constructors in dev.tachyonmcp.core.transport.netty with parameters of type NettyIoEngineModifierConstructorDescriptionNettyServerConfig(String host, int port, String endpointPath, Duration readerIdleTimeout, Duration writerIdleTimeout, int maxContentLength, @Nullable io.netty.handler.codec.http.cors.CorsConfig corsConfig, NettyIoEngine ioEngine, @Nullable Consumer<io.netty.channel.ChannelPipeline> pipelineCustomizer) Creates an instance of aNettyServerConfigrecord class.