2
0
mirror of https://github.com/9ParsonsB/Pulsar.git synced 2025-04-05 17:39:39 -04:00

[Framework] Make the new CoalescingId event arg nullable (#143)

While testing, I discovered that plugins that don't yet support sending the Coalescing ID were not mixing well because the default value of the ID is 0 -- which is also a valid body id. If the default is null, receivers can detect the absent value and apply a sensible default (ie. group them where it makes sense).
This commit is contained in:
F K 2024-02-18 15:43:53 -05:00 committed by GitHub
parent 716e513ab6
commit 9da2ba012b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -73,7 +73,7 @@ namespace Observatory.Framework
/// <summary> /// <summary>
/// A value which allows grouping of notifications together. For example, values &gt;= 0 &lt;= 1000 could be system body IDs, -1 is the system, anything else is arbitrary. /// A value which allows grouping of notifications together. For example, values &gt;= 0 &lt;= 1000 could be system body IDs, -1 is the system, anything else is arbitrary.
/// </summary> /// </summary>
public int CoalescingId; public int? CoalescingId;
} }
/// <summary> /// <summary>