codecamp

RxJS async

异步调度程序

const async: any;

描述

像使用 setTimeout(task,duration)一样调度任务

async调度程序通过将任务放在 JavaScript 事件循环队列中来异步调度任务。最好将其延迟时间或安排间隔重复的任务。

如果您只是想“推迟”任务,也就是说要在当前执行同步代码结束后立即执行(通常由来实现setTimeout(deferredTask, 0)),那么最好选择 asap 调度程序。

例子

使用异步调度程序延迟任务

import { asyncScheduler } from 'rxjs';


const task = () => console.log('it works!');


asyncScheduler.schedule(task, 2000);


// After 2 seconds logs:
// "it works!"

使用异步调度程序定期间隔执行任务

import { asyncScheduler } from 'rxjs';


function task(state) {
  console.log(state);
  this.schedule(state + 1, 1000); // `this` references currently executing Action,
                                  // which we reschedule with new state and delay
}


asyncScheduler.schedule(task, 3000, 0);


// Logs:
// 0 after 3s
// 1 after 4s
// 2 after 5s
// 3 after 6s
RxJS asap
RxJS AsyncSubject
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

RxJS operators

RxJS fetch

RxJS testing

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }