Class Transports

java.lang.Object
io.gatling.netty.util.Transports

public final class Transports extends Object
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    configureOptions(io.netty.bootstrap.Bootstrap bootstrap, int connectTimeout, boolean tcpNoDelay, boolean soKeepAlive, boolean useEpoll)
     
    static io.netty.channel.ChannelFactory<? extends io.netty.channel.socket.DatagramChannel>
    newDatagramChannelFactory(boolean useNativeTransport, boolean useIoUring)
     
    static io.netty.channel.EventLoopGroup
    newEventLoopGroup(boolean useNativeTransport, boolean useIoUring, int nThreads, String poolName)
     
    static io.netty.channel.ChannelFactory<? extends io.netty.channel.socket.SocketChannel>
    newSocketChannelFactory(boolean useNativeTransport, boolean useIoUring)
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Method Details

    • newEventLoopGroup

      public static io.netty.channel.EventLoopGroup newEventLoopGroup(boolean useNativeTransport, boolean useIoUring, int nThreads, String poolName)
    • newSocketChannelFactory

      public static io.netty.channel.ChannelFactory<? extends io.netty.channel.socket.SocketChannel> newSocketChannelFactory(boolean useNativeTransport, boolean useIoUring)
    • newDatagramChannelFactory

      public static io.netty.channel.ChannelFactory<? extends io.netty.channel.socket.DatagramChannel> newDatagramChannelFactory(boolean useNativeTransport, boolean useIoUring)
    • configureOptions

      public static void configureOptions(io.netty.bootstrap.Bootstrap bootstrap, int connectTimeout, boolean tcpNoDelay, boolean soKeepAlive, boolean useEpoll)