Absolutely, that looks perfect. Is that syntax functional, or just 
proposed? I'm wondering if I need a newer version of Angular2 than what is 
included with the quickstart to get that to work.

I'm currently not having any luck with the following:

import {DispatcherService} from 'services/DispatcherService';
import {Inject} from 'angular2/di';

@Inject(DispatcherService) // had to remove the semicolon, was getting an 
'Unsupported annotated expression' error
export class TodoStore {
  constructor(dispatcher: DispatcherService) {}
}

I am still receiving the *No provider for DispatcherService! 
(TodosComponent -> TodoStore -> DispatcherService) *error.


On Friday, April 3, 2015 at 2:28:19 AM UTC-7, Sander Elias wrote:
>
> Hi David,
>
> You mean you want somethig like this:
>
> export function threeStrikes (req:Request|string) {
>   return this.http(req).retry(3);
> }
>
> @Inject(threeStrikes);
> export class MyComponent {
>   constructor(threeStrikes) {
>     threeStrikes('[http://foo.bar](http://foo.bar/)').subscribe(onNext, 
> onError);
>   }
> }
>
> This is a Sample Jeff provided in another setting, but I think it is what 
> you are asking, right?
>
> Regards
> Sander
> ​
>

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to