NServiceBus 处理程序的成员对于存储消息相关(和不相关)数据是否安全?

发布于 2024-09-26 09:32:52 字数 423 浏览 1 评论 0原文

处理程序是否被重用来处理另一条消息?

public abstract class SomeHandler : IHandleMessages<MyEvent>
{
    public IBus Bus { get; set; }
    public String Message { get; set; }

    public void Handle(T message)
    {
        Message = "Test";
        SomeInstanceMethod();
    }

    public void SomeInstanceMethod()
    {
        if (Message = ...) // Can i use Message here?
            return;
    }
}

Are handlers reused to proceed another message?

public abstract class SomeHandler : IHandleMessages<MyEvent>
{
    public IBus Bus { get; set; }
    public String Message { get; set; }

    public void Handle(T message)
    {
        Message = "Test";
        SomeInstanceMethod();
    }

    public void SomeInstanceMethod()
    {
        if (Message = ...) // Can i use Message here?
            return;
    }
}

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

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

发布评论

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

评论(1

扛起拖把扫天下 2024-10-03 09:32:52

默认情况下,消息处理程序配置为 ComponentCallModelEnum.Singlecall,这意味着组件上的每个调用都将在新实例上执行。

因此,两个消息将由该类的不同实例处理,并且不能共享状态。

但是,您在这里设置的是一个类属性,然后调用类中的另一个方法来检索该属性。那会很好用。然而,在我看来,这有点令人困惑,如果这就是您所追求的,那么您最好将值作为参数传递给另一个方法。

By default, message handlers are configured as ComponentCallModelEnum.Singlecall, which means that each call on the component will be performed on a new instance.

So, two messages will be processed by different instances of the class and cannot share state.

However, what you have here is setting a class property and then calling another method in the class that retrieves that property. That would work fine. However, in my opinion, that is kind of confusing, and if that is what you're after, you're probably better off passing values to another method as a parameter.

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