Re-reading your original mail, I am not 100% sure what you are trying to
achieve by using separate Isolates and threads: Sharing *anything*
JavaScript-ish between different Isolates is by definition impossible
(hence the name ;-). An Isolate is a complete separate instance of the VM,
and of course you can have several of them in a s single process, Chrome
uses this for e.g. web workers. If you are using multiple threads, at any
point in time there can only be a single thread executing a given an
Isolate, this is what v8::Locker is for. The other way round, several
threads can use a single Isolate, but only one after the other guarded by a
Locker.

-- 
-- 
v8-users mailing list
v8-users@googlegroups.com
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 v8-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to