BREAKING CHANGE All imports from 'angular2/core/compiler' should be changed to 'angular2/compiler'.
17 lines
695 B
TypeScript
17 lines
695 B
TypeScript
import {Injectable} from 'angular2/src/core/di';
|
|
import {PRIMITIVE} from 'angular2/src/web_workers/shared/serializer';
|
|
import {XHR_CHANNEL} from 'angular2/src/web_workers/shared/messaging_api';
|
|
import {XHR} from 'angular2/src/compiler/xhr';
|
|
import {ServiceMessageBrokerFactory} from 'angular2/src/web_workers/shared/service_message_broker';
|
|
import {bind} from './bind';
|
|
|
|
@Injectable()
|
|
export class MessageBasedXHRImpl {
|
|
constructor(private _brokerFactory: ServiceMessageBrokerFactory, private _xhr: XHR) {}
|
|
|
|
start(): void {
|
|
var broker = this._brokerFactory.createMessageBroker(XHR_CHANNEL);
|
|
broker.registerMethod("get", [PRIMITIVE], bind(this._xhr.get, this._xhr), PRIMITIVE);
|
|
}
|
|
}
|