@ -1,11 +1,11 @@
|
||||
library angular2.examples.message_broker.background_index;
|
||||
|
||||
import "package:angular2/src/web-workers/worker/broker.dart"
|
||||
import "package:angular2/src/web_workers/worker/broker.dart"
|
||||
show MessageBroker, UiArguments;
|
||||
import "package:angular2/src/web-workers/shared/serializer.dart"
|
||||
import "package:angular2/src/web_workers/shared/serializer.dart"
|
||||
show Serializer;
|
||||
import "package:angular2/src/web-workers/shared/isolate_message_bus.dart";
|
||||
import "package:angular2/src/web-workers/worker/application.dart"
|
||||
import "package:angular2/src/web_workers/shared/isolate_message_bus.dart";
|
||||
import "package:angular2/src/web_workers/worker/application.dart"
|
||||
show WebWorkerMessageBusSink;
|
||||
import "package:angular2/src/facade/async.dart";
|
||||
import "dart:isolate";
|
||||
|
@ -2,10 +2,10 @@ import {
|
||||
PostMessageBus,
|
||||
PostMessageBusSink,
|
||||
PostMessageBusSource
|
||||
} from 'angular2/src/web-workers/shared/post_message_bus';
|
||||
} from 'angular2/src/web_workers/shared/post_message_bus';
|
||||
import {ObservableWrapper} from 'angular2/src/facade/async';
|
||||
import {MessageBroker, UiArguments} from "angular2/src/web-workers/worker/broker";
|
||||
import {Serializer} from "angular2/src/web-workers/shared/serializer";
|
||||
import {MessageBroker, UiArguments} from "angular2/src/web_workers/worker/broker";
|
||||
import {Serializer} from "angular2/src/web_workers/shared/serializer";
|
||||
|
||||
interface PostMessageInterface {
|
||||
(message: any, transferrables?:[ArrayBuffer]): void;
|
||||
|
@ -1,6 +1,6 @@
|
||||
library angular2.examples.message_broker.index;
|
||||
|
||||
import "package:angular2/src/web-workers/ui/application.dart"
|
||||
import "package:angular2/src/web_workers/ui/application.dart"
|
||||
show spawnWebWorker;
|
||||
import "package:angular2/src/facade/async.dart";
|
||||
import "dart:html";
|
||||
|
@ -2,7 +2,7 @@ import {
|
||||
PostMessageBus,
|
||||
PostMessageBusSink,
|
||||
PostMessageBusSource
|
||||
} from 'angular2/src/web-workers/shared/post_message_bus';
|
||||
} from 'angular2/src/web_workers/shared/post_message_bus';
|
||||
import {ObservableWrapper} from 'angular2/src/facade/async';
|
||||
|
||||
var webWorker = new Worker("loader.js");
|
||||
|
@ -2,7 +2,7 @@ library examples.src.web_workers.images.background_index;
|
||||
|
||||
import "index_common.dart" show ImageDemo;
|
||||
import "dart:isolate";
|
||||
import "package:angular2/src/web-workers/worker/application.dart"
|
||||
import "package:angular2/src/web_workers/worker/application.dart"
|
||||
show bootstrapWebWorker;
|
||||
import "package:angular2/src/reflection/reflection_capabilities.dart";
|
||||
import "package:angular2/src/reflection/reflection.dart";
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {bootstrapWebWorker} from "angular2/src/web-workers/worker/application";
|
||||
import {bootstrapWebWorker} from "angular2/src/web_workers/worker/application";
|
||||
import {ImageDemo} from "./index_common";
|
||||
|
||||
export function main() {
|
||||
|
@ -1,6 +1,6 @@
|
||||
library angular2.examples.web_workers.images.index;
|
||||
|
||||
import "package:angular2/src/web-workers/ui/application.dart" show bootstrap;
|
||||
import "package:angular2/src/web_workers/ui/application.dart" show bootstrap;
|
||||
import "package:angular2/src/reflection/reflection_capabilities.dart";
|
||||
import "package:angular2/src/reflection/reflection.dart";
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
import {bootstrap} from "angular2/src/web-workers/ui/application";
|
||||
import {bootstrap} from "angular2/src/web_workers/ui/application";
|
||||
bootstrap("loader.js");
|
||||
|
@ -2,7 +2,7 @@ library examples.src.web_workers.kitchen_sink.background_index;
|
||||
|
||||
import "index_common.dart" show HelloCmp;
|
||||
import "dart:isolate";
|
||||
import "package:angular2/src/web-workers/worker/application.dart"
|
||||
import "package:angular2/src/web_workers/worker/application.dart"
|
||||
show bootstrapWebWorker;
|
||||
import "package:angular2/src/reflection/reflection_capabilities.dart";
|
||||
import "package:angular2/src/reflection/reflection.dart";
|
||||
|
@ -1,5 +1,5 @@
|
||||
import {HelloCmp} from "./index_common";
|
||||
import {bootstrapWebWorker} from "angular2/src/web-workers/worker/application";
|
||||
import {bootstrapWebWorker} from "angular2/src/web_workers/worker/application";
|
||||
|
||||
export function main() {
|
||||
bootstrapWebWorker(HelloCmp);
|
||||
|
@ -1,6 +1,6 @@
|
||||
library angular2.examples.web_workers.kitchen_sink.index;
|
||||
|
||||
import "package:angular2/src/web-workers/ui/application.dart" show bootstrap;
|
||||
import "package:angular2/src/web_workers/ui/application.dart" show bootstrap;
|
||||
import "package:angular2/src/reflection/reflection_capabilities.dart";
|
||||
import "package:angular2/src/reflection/reflection.dart";
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
import {bootstrap} from "angular2/src/web-workers/ui/application";
|
||||
bootstrap("loader.js");
|
||||
import {bootstrap} from "angular2/src/web_workers/ui/application";
|
||||
bootstrap("loader.js");
|
||||
|
@ -2,7 +2,7 @@ library examples.src.web_workers.todo.background_index;
|
||||
|
||||
import "index_common.dart" show TodoApp;
|
||||
import "dart:isolate";
|
||||
import "package:angular2/src/web-workers/worker/application.dart"
|
||||
import "package:angular2/src/web_workers/worker/application.dart"
|
||||
show bootstrapWebWorker;
|
||||
import "package:angular2/src/reflection/reflection_capabilities.dart";
|
||||
import "package:angular2/src/reflection/reflection.dart";
|
||||
|
@ -1,4 +1,4 @@
|
||||
import {bootstrapWebWorker} from "angular2/src/web-workers/worker/application";
|
||||
import {bootstrapWebWorker} from "angular2/src/web_workers/worker/application";
|
||||
import {TodoApp} from "./index_common";
|
||||
|
||||
export function main() {
|
||||
|
@ -1,6 +1,6 @@
|
||||
library angular2.examples.web_workers.todo.index;
|
||||
|
||||
import "package:angular2/src/web-workers/ui/application.dart" show bootstrap;
|
||||
import "package:angular2/src/web_workers/ui/application.dart" show bootstrap;
|
||||
import "package:angular2/src/reflection/reflection_capabilities.dart";
|
||||
import "package:angular2/src/reflection/reflection.dart";
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
import {bootstrap} from "angular2/src/web-workers/ui/application";
|
||||
import {bootstrap} from "angular2/src/web_workers/ui/application";
|
||||
bootstrap("loader.js");
|
||||
|
Reference in New Issue
Block a user