Mint.HTTP.get_private
You're seeing just the function
get_private
, go back to Mint.HTTP module for more information.
Specs
Gets a private value from the connection.
Retrieves a private value previously set with put_private/3
from the connection.
key
is the key under which the value to retrieve is stored. default
is a default
value returned in case there's no value under the given key.
See also put_private/3
and delete_private/2
.
Examples
conn = Mint.HTTP.put_private(conn, :client_name, "Mint")
Mint.HTTP.get_private(conn, :client_name)
#=> "Mint"
Mint.HTTP.get_private(conn, :non_existent)
#=> nil