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
What is the usecase for this plug
In order to support events, an implementation of multicast delegates is needed. Currently, it seems like the plugs for this class are missing.
Complexity of plug
As a multicast delegate is an invocation list, this should be trivial to implement.
Describe alternatives you've considered
A possible alternative is using a List<T>, where T is the delegate type.
Additional context
Currently, using events results in the following method being unplugged:
What is the usecase for this plug
In order to support events, an implementation of multicast delegates is needed. Currently, it seems like the plugs for this class are missing.
Complexity of plug
As a multicast delegate is an invocation list, this should be trivial to implement.
Describe alternatives you've considered
A possible alternative is using a
List<T>
, whereT
is the delegate type.Additional context
Currently, using events results in the following method being unplugged:
Interestingly enough, Cosmos seems to have a plug related to multicast delegates: https://github.com/CosmosOS/Cosmos/blob/master/source/Cosmos.Core_Plugs/System/DelegateImpl.cs#L35
This is possibly a software regression.
The text was updated successfully, but these errors were encountered: