You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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
The text was updated successfully, but these errors were encountered:
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:
Which project is your feature request related to?
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
The text was updated successfully, but these errors were encountered: