What is the difference between between using :

 v8::Locker locker(isolate);
 v8::Isolate::Scope isolate_scope(isolate);
 v8::HandleScope handle_scope;


OR using the following:

v8::Locker locker;

v8::HandleScope handle_scope;


What are the scenarios for using the above two conditions.

Appreciate any help on this...Thanks..

-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users

Reply via email to