Skip to content
New issue

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

DisconnectedAsync event args type; managed vs. unmanaged #1432

Closed
d5UtQvp8QQU9 opened this issue Jun 14, 2022 · 1 comment
Closed

DisconnectedAsync event args type; managed vs. unmanaged #1432

d5UtQvp8QQU9 opened this issue Jun 14, 2022 · 1 comment
Labels
feature-request New feature or request

Comments

@d5UtQvp8QQU9
Copy link

d5UtQvp8QQU9 commented Jun 14, 2022

Describe the feature request

I'm trying to port an application using MqttManagedClient v3 to v4.
While doing so I discovered that the event handler for the DisconnectedAsync event has different arguments for managed vs unmanaged clients.

IMqttClient:
event Func<MqttClientDisconnectedEventArgs, Task> DisconnectedAsync;

MqttClient:
public event Func<MqttClientDisconnectedEventArgs, Task> DisconnectedAsync {...}

IManagedMqttClient:
event Func<EventArgs, Task> DisconnectedAsync;

ManagedMqttClient:
public event Func<EventArgs, Task> DisconnectedAsync {...}

There is, to my understanding, no technical reason for doing so, as the managed event is simply a relayed version of the unmanaged event:

add => InternalClient.DisconnectedAsync += value;
remove => InternalClient.DisconnectedAsync -= value;

Which project is your feature request related to?

  • ManagedClient

Describe the solution you'd like

Could the managed version of the event also use MqttClientDisconnectedEventArgs as event argument?

Describe alternatives you've considered

Instead of using the event in IManagedMqttClient:
managedClient.DisconnectedAsync += async e => {...}
Use the nested unmanaged client directly:
managedClient.InternalClient.DisconnectedAsync += async e => {...}

Additional context

none

@d5UtQvp8QQU9 d5UtQvp8QQU9 added the feature-request New feature or request label Jun 14, 2022
@chkr1011
Copy link
Collaborator

Thank you for reporting this issue. The event arg types are just wrong and must be changed. I will release a hotfix version soon.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature-request New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants