class Anthropic::Internal::Transport::PooledNetRequester

def initialize(size: self.class::DEFAULT_MAX_CONNECTIONS)

Parameters:
  • size (Integer) --

Other tags:
    Api: - private
def initialize(size: self.class::DEFAULT_MAX_CONNECTIONS)
  @mutex = Mutex.new
  @size = size
  @pools = {}
end