module Typhoeus::Pool

def self.release(easy)

Experimental RBS support (using type sampling data from the type_fusion project).

def self.release: (Ethon::Easy easy) -> Array[Ethon::Easy]

This signature was generated using 41 samples from 3 applications.

Other tags:
    Example: Release easy. -
def self.release(easy)
  easy.cookielist = "flush" # dump all known cookies to 'cookiejar'
  easy.cookielist = "all" # remove all cookies from memory for this handle
  easy.reset
  @mutex.synchronize { easies << easy }
end