private RawMemcacheClient createReconnectingClient()

in folsom/src/main/java/com/spotify/folsom/MemcacheClientBuilder.java [748:767]


  private RawMemcacheClient createReconnectingClient(
      final HostAndPort address, final boolean binary, final Authenticator authenticator) {
    return new ReconnectingClient(
        backoffFunction,
        ReconnectingClient.singletonExecutor(),
        address,
        reconnectionListener,
        maxOutstandingRequests,
        eventLoopThreadFlushMaxBatchSize,
        binary,
        authenticator,
        executor.get(),
        connectionTimeoutMillis,
        charset,
        metrics,
        maxSetLength,
        eventLoopGroup,
        channelClass,
        sslEngineFactory);
  }