We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Apworks\Bus\MessageDispatcher.cs
Line 174
Type messageType = typeof(T);
Here the T is always "object", and the if condition below will never be true.
This issue is caused by : Apworks.Bus.DirectBus\DirectBus.cs
Line 40
private readonly Queue<object> messageQueue = new Queue<object>();
Change it to:
private readonly Queue<dynamic> messageQueue = new Queue<dynamic>();
Will fix it.
This issue also exists in MSMQ Bus.
The text was updated successfully, but these errors were encountered:
Thank you for committing the issue here, and I will investigate the issues and get them fixed.
Sorry, something went wrong.
daxnet已修复
No branches or pull requests
Apworks\Bus\MessageDispatcher.cs
Line 174
Here the T is always "object", and the if condition below will never be true.
This issue is caused by : Apworks.Bus.DirectBus\DirectBus.cs
Line 40
Change it to:
Will fix it.
This issue also exists in MSMQ Bus.
The text was updated successfully, but these errors were encountered: