如何使用 takeUntil 取消订阅定时器服务调用
How to unsubcribe a timer service call using takeUntil
我在一定时间间隔后定期调用服务。我在服务响应中得到两个数字,我想比较这些数字,如果它们相等,我想结束服务调用。那么我应该如何使用 takeUntil() 方法呢?
我尝试在 takeUntil() 中使用 this.ngXUnsubscribe,它在一段时间内不会结束服务调用。
ngXUnsubscribe 定义如下:
protected ngXUnsubscribe: Subject<void> = new Subject<void>();
const source = timer(1000,60000);
source.subscribe(()=> {
this._helper.runStatus(id)
.pipe(first(),takeUntil())
.subscribe(response => {
let xyz = response && response.runScenariosDTO ? response.runScenariosDTO : [];
this.passDataToParent(xyz);
this.progressBarData = this.ScenariosBasedOnTypeDTO.map(scenario => {
let pBar = response && response.runScenariosDTO ? response.runScenariosDTO.find(barData => barData.scenarioId ? barData.scenarioId === scenario.scenarioId : undefined) : undefined;
this.showStatusAfterLoad = 1;
return this.prepareProgressBarData(scenario, pBar);
});
});
});
我想在这两个数字相等时停止执行,直到那时我应该继续调用该服务。
我得到的JSON数据是
{
"runId": 0,
"runScenariosDTO": [
{
"scenarioId": 0,
"totalDataset": 0,
"totalExecuted": 0,
"totalFailed": 0,
"totalPassed": 0
}
],
"totalScenarios": 0
}
所以,在runScenariosDTO的数组中,我想添加所有totalExecuted和totalDataset,然后我想比较它们。
您应该利用 takeWhile
运算符 (examples)。
timer(1000, 60000).pipe(
switchMap(() => this._helper.runStatus(id)),
takeWhile(response => {
const totals = response.runScenariosDTO.map(v => ({
dataset: v.totalDataset,
executed: v.totalExecuted
}))
.reduce((sums, v) => ({
dataset: sums.dataset + v.dataset,
executed: sums.executed + v.executed
}), { dataset: 0, executed: 0 });
return totals.dataset !== totals.executed;
})
).subscribe(...);
我在一定时间间隔后定期调用服务。我在服务响应中得到两个数字,我想比较这些数字,如果它们相等,我想结束服务调用。那么我应该如何使用 takeUntil() 方法呢?
我尝试在 takeUntil() 中使用 this.ngXUnsubscribe,它在一段时间内不会结束服务调用。 ngXUnsubscribe 定义如下:
protected ngXUnsubscribe: Subject<void> = new Subject<void>();
const source = timer(1000,60000);
source.subscribe(()=> {
this._helper.runStatus(id)
.pipe(first(),takeUntil())
.subscribe(response => {
let xyz = response && response.runScenariosDTO ? response.runScenariosDTO : [];
this.passDataToParent(xyz);
this.progressBarData = this.ScenariosBasedOnTypeDTO.map(scenario => {
let pBar = response && response.runScenariosDTO ? response.runScenariosDTO.find(barData => barData.scenarioId ? barData.scenarioId === scenario.scenarioId : undefined) : undefined;
this.showStatusAfterLoad = 1;
return this.prepareProgressBarData(scenario, pBar);
});
});
});
我想在这两个数字相等时停止执行,直到那时我应该继续调用该服务。
我得到的JSON数据是
{
"runId": 0,
"runScenariosDTO": [
{
"scenarioId": 0,
"totalDataset": 0,
"totalExecuted": 0,
"totalFailed": 0,
"totalPassed": 0
}
],
"totalScenarios": 0
}
所以,在runScenariosDTO的数组中,我想添加所有totalExecuted和totalDataset,然后我想比较它们。
您应该利用 takeWhile
运算符 (examples)。
timer(1000, 60000).pipe(
switchMap(() => this._helper.runStatus(id)),
takeWhile(response => {
const totals = response.runScenariosDTO.map(v => ({
dataset: v.totalDataset,
executed: v.totalExecuted
}))
.reduce((sums, v) => ({
dataset: sums.dataset + v.dataset,
executed: sums.executed + v.executed
}), { dataset: 0, executed: 0 });
return totals.dataset !== totals.executed;
})
).subscribe(...);