Mint.HTTP.put_private
You're seeing just the function
put_private
, go back to Mint.HTTP module for more information.
Specs
Assigns a new private key and value in the connection.
This storage is meant to be used to associate metadata with the connection and it can be useful when handling multiple connections.
The given key
must be an atom, while the given value
can be an arbitrary
term. The return value of this function is an updated connection.
See also get_private/3
and delete_private/2
.
Examples
Let's see an example of putting a value and then getting it:
conn = Mint.HTTP.put_private(conn, :client_name, "Mint")
Mint.HTTP.get_private(conn, :client_name)
#=> "Mint"