Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is this possible? That is to say, I tried it and it didn't work. But in theory it should be possible shouldn't it? I'm only passing messages back and forth, isolated memory space, etc.

import 'dart:io';
import 'dart:isolate';

main(){
  final sp = spawnUri('path/to/dart_html_app.dart');
}

throws:

IsolateSpawnException: 'Do not know how to load 'dart:html'
share|improve this question
If the code above is running in the server-side VM, then it doesn't have access to dart:html (afik). I can imagine, however, a scenario using websockets, where a previously connected browser could use a some proxy object to "spawn" a client-side dart isolate. Is this the type of scenario you envisage? – Chris Buckett Oct 3 '12 at 20:32
Yes but without proxies. :) – John Evans Oct 3 '12 at 20:35
I also can't see this working directly. Not to spawn simply because specifically spawning says to me "in this vm launch another isolate with code retrieved from x". That said I could see a time when a Websocket is used to trigger the creation of an isolate in another vm instance (ie dartium) and then returning a send port to that isolate. Just not a specific spawning of the isolate itself. – Matt B Oct 3 '12 at 20:56
spawnUri() says to you "spawn in this VM"? It doesn't to me. it says spawn from a uri location, anywhere. – John Evans Oct 3 '12 at 23:44
Anywhere? But where? Isolates are in-process only, at least for now, and I'd guess that this won't change for quite some time. – Ladicek Oct 4 '12 at 3:44
show 2 more comments

1 Answer

As someone already stated, you can't import dart:html in the VM (at least at this point). Your solution would be to split the app into two libraries, where the one you want to spawn does not use dart:html.

What are you actually trying to do? If you think you could have the browser and VM talk via isolates, that's not going to work. Isolates use a thread pool in the VM and Web Workers on the browser if they are available.

If you just want "load the code from this URI and execute it just like any code in a new isolate", then that's certainly possible -- why not? You just have to refactor your code base so that you don't import dart:html except only when you really need it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.