设置 RunWorkerCompleted 值

发布于 2024-10-28 08:24:50 字数 213 浏览 2 评论 0原文

如果我有一个后台工作人员在其 do work 中执行一些任务,

    String val= getVal("Val");
    byte[] b = (byte[])e.Argument;

    b = getData.FromPlace(val);

我如何将 b 的 vakue 传递给 runworkercompleted 方法?

If i have a background worker that does some tasks in its do work

    String val= getVal("Val");
    byte[] b = (byte[])e.Argument;

    b = getData.FromPlace(val);

How do i pass the vakue of b to the runworkercompleted method?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

疧_╮線 2024-11-04 08:24:50

您可以使用闭包,

void Main()
{

    var bw = new BackgroundWorker();

    byte[] b;

    bw.DoWork += (sender, args) => {

        b = DoStuff();
    };
}

byte[] DoStuff() {

    String val= getVal("Val");
    byte[] b = (byte[])e.Argument;

    b = getData.FromPlace(val);

    return b;
}

也可以在事件参数对象上使用 return Result 属性。我认为这种方式提供了更多的灵活性。

void Main()
{
    var bw = new BackgroundWorker();

    bw.DoWork += (sender, args) => {

        args.Result = DoStuff();
    };

    bw.RunWorkerCompleted += (sender, args) =>  {
        var result = args.Result as byte[];
    };

    bw.RunWorkerAsync();
}

byte[] DoStuff() {
    return new byte[10];
}

You could use closure

void Main()
{

    var bw = new BackgroundWorker();

    byte[] b;

    bw.DoWork += (sender, args) => {

        b = DoStuff();
    };
}

byte[] DoStuff() {

    String val= getVal("Val");
    byte[] b = (byte[])e.Argument;

    b = getData.FromPlace(val);

    return b;
}

You could also use return Result property on the event args object. I think this way gives more flexibility.

void Main()
{
    var bw = new BackgroundWorker();

    bw.DoWork += (sender, args) => {

        args.Result = DoStuff();
    };

    bw.RunWorkerCompleted += (sender, args) =>  {
        var result = args.Result as byte[];
    };

    bw.RunWorkerAsync();
}

byte[] DoStuff() {
    return new byte[10];
}
七色彩虹 2024-11-04 08:24:50

您可以使用实例变量。将声明放置在 DoWork 事件定义上方。

private byte[] b;

You can use an instance variable. Place the declaration above the DoWork event definition.

private byte[] b;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文