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
Delegate events like the one shown above should have event keyword modifiers.
publiceventOnValueChangedDelegate OnValueChanged;
A "naked" delegate refers to a delegate that is declared without the event keyword. This means the delegate is exposed directly, allowing external code to not only subscribe and unsubscribe to it but also to reassign or invoke it directly. This can lead to unintended side effects and potential bugs.
For example, in the provided code snippet, the delegates are correctly declared as events:
Reassignment: External code can reassign the delegate, potentially removing all existing subscribers.
networkPlayer.OnSpawnedLocal=SomeMethod;// Reassigns the delegate, removing all previous subscribers.
Invocation: It breaks encapsulation, making it harder to control how and when the delegate is invoked.
networkPlayer.OnSpawnedLocal?.Invoke();// Invokes the delegate from outside the class.
Dangling Pointers: Events in C# are multicast delegates which can have multiple and anonymous methods subscribe to the same event. Using the event keyword will help properly manage those subscriptions and unsubscriptions. This way if someone forgets to unsubscribe, the dangling pointer will get properly cleaned up by garbage collector.
If a delegate holds a reference to an object that should be garbage collected, it can prevent the object from being collected, leading to memory leaks.
If the target method or object of a delegate has been collected, invoking the delegate can result in a NullReferenceException or other runtime errors.
TR;DL:
I've seen this throughout the whole codebase and highly encourage the use of the event keyword for all usages of delegate callbacks.
Using the event keyword ensures that the delegate can only be invoked from within the class that declares it, maintaining proper encapsulation and control over the event's lifecycle and avoiding memory pressure from forgetting to unassign the delegates after use.
The text was updated successfully, but these errors were encountered:
StephenHodgson
changed the title
Naked delegates should have event modifier
Naked delegates should have event modifier keyword
Nov 22, 2024
com.unity.netcode.gameobjects/com.unity.netcode.gameobjects/Runtime/NetworkVariable/NetworkVariable.cs
Line 23 in dcaeef9
Delegate events like the one shown above should have
event
keyword modifiers.A "naked" delegate refers to a delegate that is declared without the
event
keyword. This means the delegate is exposed directly, allowing external code to not only subscribe and unsubscribe to it but also to reassign or invoke it directly. This can lead to unintended side effects and potential bugs.For example, in the provided code snippet, the delegates are correctly declared as events:
If these were declared as naked delegates, they would look like this:
Issues with naked delegates:
Reassignment: External code can reassign the delegate, potentially removing all existing subscribers.
Invocation: It breaks encapsulation, making it harder to control how and when the delegate is invoked.
Dangling Pointers: Events in C# are multicast delegates which can have multiple and anonymous methods subscribe to the same event. Using the event keyword will help properly manage those subscriptions and unsubscriptions. This way if someone forgets to unsubscribe, the dangling pointer will get properly cleaned up by garbage collector.
TR;DL:
I've seen this throughout the whole codebase and highly encourage the use of the
event
keyword for all usages of delegate callbacks.Using the
event
keyword ensures that the delegate can only be invoked from within the class that declares it, maintaining proper encapsulation and control over the event's lifecycle and avoiding memory pressure from forgetting to unassign the delegates after use.The text was updated successfully, but these errors were encountered: