diff src/app/feature-extraction-menu/feature-extraction-menu.component.ts @ 51:8619f25ff52a

Communicate new features being extracted via subscriptions to the stream in FeatureExtractionService.
author Lucas Thompson <dev@lucas.im>
date Tue, 06 Dec 2016 14:19:03 +0000
parents af0b4b05311c
children 2c3fe51ad1f0
line wrap: on
line diff
--- a/src/app/feature-extraction-menu/feature-extraction-menu.component.ts	Tue Dec 06 14:18:19 2016 +0000
+++ b/src/app/feature-extraction-menu/feature-extraction-menu.component.ts	Tue Dec 06 14:19:03 2016 +0000
@@ -33,7 +33,7 @@
   constructor(private piperService: FeatureExtractionService) {
     this.extractorsMap = new Map();
     this.extractors = [];
-    this.requestOutput = new EventEmitter();
+    this.requestOutput = new EventEmitter<ExtractorOutputInfo>();
     this.isDisabled = true;
   }