在python中寻找sched的指导

时间:2016-06-24 22:52:23

标签: python scheduled-tasks

我在python中遇到麻烦...下面是我的代码并且它运行但它没有做我想要它做的...当前如果时间已经过去daily_time = datetime.time(7,30 )然后它会自动运行。我不希望它在过去的7点30分运行,我希望明天同时“重新注册”任务。我怎么能纠正这个?

MdCheckbox.prototype.registerOnChange = function (fn) {
        if (this._changeSubscription) {
            this._changeSubscription.unsubscribe();
        }
        this._changeSubscription = this.change
        .map(function (v) {
            return v.checked;
        })
        .subscribe(fn);
    };

0 个答案:

没有答案