加入一个以StartNew()开头的线程

时间:2013-09-25 18:59:51

标签: c# .net multithreading

当使用StartNew()方法启动新线程上的进程时,我需要弄清楚如何在同一个线程中对该对象进行另一次调用(我假设这将是某种Join操作?)

下面的例子是愚蠢的,以说明我想要做的事情。我很清楚基本的并发性考虑因素严重缺乏。但我不想用所有这些逻辑来掩盖代码,所以请原谅我。

以下控制台应用程序显示了我要完成的任务。假设在StartNew()调用中创建了一个ID为9976的新线程,并在那里调用该方法。我希望在线程9976上对文件系统观察器更改事件处理程序中的ProcessImmediate()进行后续调用。就目前而言,调用将共享用于文件系统观察器更改事件的相同线程。

可以这样做,如果是,怎么做?

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            var runner = new Runner();
            runner.Run();

            Console.ReadKey();
        }
    }

    public class Runner
    {
        private Activity _activity = null;
        private FileSystemWatcher _fileSystemWatcher;

        public void Run()
        {
            _activity = new Activity();

            // start activity on a new thread
            Task.Factory.StartNew(() => _activity.Go());

            _fileSystemWatcher = new FileSystemWatcher();
            _fileSystemWatcher.Filter = "*.watcher";
            _fileSystemWatcher.Path = "c:\temp";
            _fileSystemWatcher.Changed += FileSystemWatcher_Changed;
            _fileSystemWatcher.EnableRaisingEvents = true;
        }

        private void FileSystemWatcher_Changed(object sender, FileSystemEventArgs e)
        {
            // WANT TO CALL THIS FOR ACTIVITY RUNNING ON PREVIOUSLY CALLED THREAD
            _activity.ProcessImmediate();
        }
    }

    public class Activity
    {
        public void Go()
        {
            while (!Stop)
            {
                // for purposes of this example, magically assume that ProcessImmediate has not been called when this is called
                DoSomethingInteresting();

                System.Threading.Thread.Sleep(2000);
            }
        }
        protected virtual void DoSomethingInteresting() { }

        public void ProcessImmediate()
        {
            // for purposes of this example, assume that Go is magically in its sleep state when ProcessImmediate is called
            DoSomethingInteresting();
        }

        public bool Stop { get; set; }
    }
}

*更新*

感谢您的出色回应。我接受了Mike的建议,并为我的控制台应用程序实现了它。以下是完整的工作代码,其中还包括使用取消令牌。我发布这个以防其他人可能会发现它有用。

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            var runner = new Runner();
            runner.Run();
            Console.ReadKey();
            runner.Stop();
            Console.ReadKey();
        }
    }

    public class Runner
    {
        private Activity _activity = null;
        private FileSystemWatcher _fileSystemWatcher;
        private CancellationTokenSource _cts = new CancellationTokenSource();

        public void Stop() { _cts.Cancel(); }

        public void Run()
        {
            _activity = new Activity();

            // start activity on a new thread
            var task = new Task(() => _activity.Go(_cts.Token), _cts.Token, TaskCreationOptions.LongRunning);
            task.Start();

            _fileSystemWatcher = new FileSystemWatcher();
            _fileSystemWatcher.Filter = "*.watcher";
            _fileSystemWatcher.Path = "C:\\Temp\\FileSystemWatcherPath";
            _fileSystemWatcher.Changed += FileSystemWatcher_Changed;
            _fileSystemWatcher.EnableRaisingEvents = true;
        }

        private void FileSystemWatcher_Changed(object sender, FileSystemEventArgs e)
        {
            // WANT TO CALL THIS FOR ACTIVITY RUNNING ON PREVIOUSLY CALLED THREAD
            _activity.ProcessImmediate();
        }
    }

    public class Activity : IDisposable
    {
        private AutoResetEvent _processing = new AutoResetEvent(false);

        public void Go(CancellationToken ct)
        {
            Thread.CurrentThread.Name = "Go";

            while (!ct.IsCancellationRequested)
            {
                // for purposes of this example, magically assume that ProcessImmediate has not been called when this is called
                DoSomethingInteresting();
                _processing.WaitOne(5000);
            }

            Console.WriteLine("Exiting");
        }
        protected virtual void DoSomethingInteresting()
        {
            Console.WriteLine(string.Format("Doing Something Interesting on thread {0}", Thread.CurrentThread.ManagedThreadId));
        }

        public void ProcessImmediate()
        {
            // for purposes of this example, assume that Go is magically in its sleep state when ProcessImmediate is called
            _processing.Set();
        }

        public void Dispose()
        {
            if (_processing != null)
            {
                _processing.Dispose();
                _processing = null;
            }
        }
    }
}

3 个答案:

答案 0 :(得分:1)

首先,如果要创建的任务无法快速完成,则应使用TaskCreationOptions.LongRunning。其次,使用AutoResetEvent表示等待线程被唤醒。请注意,在ProcessImmediate完成在另一个线程上运行之前,DoSomethingInteresting下面将返回。例如:

using System.Threading;

public class Activity : IDisposable
{
    private AutoResetEvent _processing = new AutoResetEvent(false); 

    public void Go()
    {
        while (!Stop)
        {
            // for purposes of this example, magically assume that ProcessImmediate has not been called when this is called
            DoSomethingInteresting();

            _processing.WaitOne(2000);
        }
    }
    protected virtual void DoSomethingInteresting() { }

    public void ProcessImmediate()
    {
        _processing.Set();
    }

    public bool Stop { get; set; }

    public void Dispose() 
    {
        if (_processing != null)
        {
            _processing.Dispose();
            _processing = null;
        }
    }
}

答案 1 :(得分:1)

用户mike提供了更好的解决方案,当您想立即调用相同的方法时,这将是合适的。如果你想立即调用不同的方法,我将扩展迈克的答案来实现这一目标。

using System.Threading;

public class Activity : IDisposable
{
    private AutoResetEvent _processing = new AutoResetEvent(false);
    private ConcurrentQueue<Action> actionsToProcess = new ConcurrentQueue<Action>();

    public void Go()
    {
        while (!Stop)
        {
            // for purposes of this example, magically assume that ProcessImmediate has not been called when this is called
            DoSomethingInteresting();

            _processing.WaitOne(2000);
             while(!actionsToProcess.IsEmpty)
             {
                 Action action;
                 if(actionsToProcess.TryDeque(out action))
                     action();
             }
        }
    }
    protected virtual void DoSomethingInteresting() { }

    public void ProcessImmediate(Action action)
    {
        actionsToProcess.Enqueue(action);
        _processing.Set();
    }

    public bool Stop { get; set; }

    public void Dispose() 
    {
        if (_processing != null)
        {
            _processing.Dispose();
            _processing = null;
        }
    }
}

答案 2 :(得分:0)

要在同一个线程上执行不同的方法,您可以使用调度传入请求的消息循环。一个简单的选择是使用Reactive Extensions的event loop scheduler并“递归地”调度Go()函数 - 如果同时安排了不同的操作,它将在下一个Go()操作之前被处理

以下是一个示例:

class Loop
    : IDisposable
{
    IScheduler scheduler = new EventLoopScheduler();
    MultipleAssignmentDisposable stopper = new MultipleAssignmentDisposable();

    public Loop()
    {
        Next();
    }

    void Next()
    {
        if (!stopper.IsDisposed)
            stopper.Disposable = scheduler.Schedule(Handler);
    }

    void Handler()
    {
        Thread.Sleep(1000);
        Console.WriteLine("Handler: {0}", Thread.CurrentThread.ManagedThreadId);
        Next();
    }

    public void Notify()
    {
        scheduler.Schedule(() =>
        {
            Console.WriteLine("Notify: {0}", Thread.CurrentThread.ManagedThreadId);
        });
    }

    public void Dispose()
    {
        stopper.Dispose();
    }
}

static void Main(string[] args)
{
    using (var l = new Loop())
    {
        Console.WriteLine("Press 'q' to quit.");
        while (Console.ReadKey().Key != ConsoleKey.Q)
            l.Notify();
    }
}