在另一个线程中执行回调

时间:2017-04-05 18:48:26

标签: c# multithreading

我使用API​​为通过回调返回图像的相机,如下所示:

camera.StartCapture(ImageEvent);

protected void ImageEvent(ManagedImage image)
{
    // do something with the image
}

问题是ImageEvent一直被调用,不让其他方法正常运行。所以我想在另一个帖子中运行ImageEvent,我该怎么做?

使用async / await的解决方案更可取。

1 个答案:

答案 0 :(得分:1)

Nothing