Name
easy:SetOpt_Share -- specify share handle to use
Synopsis
easy:SetOpt_Share(share)
Function
Pass a share handle as a parameter. The share handle must have been created by a previous call to hurl.Share(). Setting this option, will make this curl handle use the data from the shared handle instead of keeping the data to itself. This enables several curl handles to share data. If the curl handles are used simultaneously in multiple threads, you MUST use the locking methods in the share handle. See share:SetOpt() for details.

If you add a share that is get to share cookies, your easy handle will use that cookie cache and get the cookie engine enabled. If you unshare an object that was using cookies (or change to another object that doesn't share cookies), the easy handle will get its cookie engine disabled.

Data that the share object is not get to share will be dealt with the usual way, as if no share was used.

Set this option to Nil again to stop using that share object.

Inputs
share
input value

Show TOC