On Fri, Jun 13, 2014 at 2:15 PM, juu <[email protected]> wrote:

> But if I use multiples isolates, I won't be able to share objects across
> Isolates' contexts ? No ?
>

Nope, hence the term "Isolate"... ;-)


> In my case, (AMD Require implementation) the result of my second thread
> execution is supposed to be used in my main thread.
>

I don't fully understand what you're trying to do in detail, but
preempting/interrupting the execution of an Isolate, trying to do something
else with that Isolate, and later resuming the previous execution
definitely won't work (and never did IIRC). You can e.g. interleave the
execution of different Isolates in a single thread, or migrate one Isolate
to another thread, or have multiple Isolates running at the same time in
separate threads, though.

-- 
-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to