Re: [v8-users] Re: Move V8 Context from one Isolate to another

2015-03-29 Thread Ivan Pizhenko
Thank you for the good idea. This approach with JSON sounds like what I need to accomplish my task. 2015-03-05 23:44 GMT+02:00 Flying Jester foolkingcr...@gmail.com: What exactly are you trying to accomplish with this? Copying a context would be a huge operation, if it's possible at all (I

Re: [v8-users] Re: Move V8 Context from one Isolate to another

2015-03-05 Thread Flying Jester
What exactly are you trying to accomplish with this? Copying a context would be a huge operation, if it's possible at all (I don't think it is). You are almost certainly better off encapsulating the state you want in JSON or through some API you come up with yourself, and then loading that in

Re: [v8-users] Re: Move V8 Context from one Isolate to another

2015-03-05 Thread Ivan Pizhenko
What about making copy/clone of context? 4 бер. 2015 09:52, користувач Yang Guo yang...@chromium.org написав: A context is too deeply entangled into the isolate it belongs to, so moving the context but not the isolate is basically impossible with the current V8. On Sunday, March 1, 2015 at

[v8-users] Re: Move V8 Context from one Isolate to another

2015-03-03 Thread Yang Guo
A context is too deeply entangled into the isolate it belongs to, so moving the context but not the isolate is basically impossible with the current V8. On Sunday, March 1, 2015 at 9:29:49 PM UTC+1, Ivan P. wrote: Does anybody know - is there an easy way to move some v8::Conext that belongs