rxjs-obd
Version:
RxJS Implementation for OBD (On Board Diagnostics) of vehicles via ELM 327 connections.
17 lines • 478 B
JavaScript
import { Subscriber } from 'rxjs';
/**
* We need this JSDoc comment for affecting ESDoc.
* @ignore
*/
export class OuterSubscriber extends Subscriber {
notifyNext(outerValue, innerValue, outerIndex, innerIndex, innerSub) {
this.destination.next(innerValue);
}
notifyError(error, innerSub) {
this.destination.error(error);
}
notifyComplete(innerSub) {
this.destination.complete();
}
}
//# sourceMappingURL=OuterSubscriber.js.map