view Test/RewritingTest/OverwriteScheduler.cs @ 26:45ff08d59fda

update CGM
author riono <e165729@ie.u-ryukyu.ac.jp>
date Tue, 12 Jan 2021 21:23:23 +0900
parents
children
line wrap: on
line source

using System.Collections.Generic;
using System.Threading.Tasks;

namespace Christie_net {
public class OverwriteScheduler : TaskScheduler {
    protected override IEnumerable<Task>? GetScheduledTasks() {
        throw new System.NotImplementedException();
    }

    protected override void QueueTask(Task task) {
        throw new System.NotImplementedException();
    }

    protected override bool TryExecuteTaskInline(Task task, bool taskWasPreviouslyQueued) {
        throw new System.NotImplementedException();
    }
}
}