作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
假设我想创建一个自定义 TaskScheduler,但在其中,如果某些条件不适用,则回退到默认值。我该怎么做?
例如
protected override void QueueTask(Task task) {
if (/* some condition */) {
/* schedule task manually, does not matter */
}
/* queue task on default -- how? */
}
protected override IEnumerable<Task> GetScheduledTasks() {
return Enumerable.Concat(/* my tasks */, /* tasks from default -- how? */);
}
最佳答案
我认为您不能(或不应该)这样做,即使您诉诸反射 hack。理论上,您需要从现有的非抽象任务调度程序中派生出您的自定义 TaskScheduler
,例如ThreadPoolTaskScheduler
.
但是,你不能因为all non-abstract implementations TPL 中的 TaskScheduler
是 private
或 internal
。
在 TaskScheduler.QueueTask
的情况下,可能很想简单地将调用转发给 Task.Start
:
protected override void QueueTask(Task task) {
if (/* some condition */) {
/* schedule task manually, does not matter */
}
/* queue task on default -- how? */
task.Start(TaskScheduler.Default);
}
但是,您也不能这样做。 implementation of Task.Start
在内部调用 TaskScheduler.QueueTask
,这将导致无限递归。
此外,Task
对象在 Task.Start
中存储了对任务调度程序的引用。因此,比方说,如果您使用反射调用 ThreadPoolTaskScheduler.QueueTask
,它会断开任务与其任务调度程序之间的连接。
因此,QueueTask
、GetScheduledTasks
和 TaskScheduler
的一些其他方法被声明为 protected
是有充分理由的>。如果您要实现自定义任务计划程序,则必须提供完整的实现。
关于c# - 如何从自定义 TaskScheduler 回退到默认 TaskScheduler,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22583841/
我是一名优秀的程序员,十分优秀!