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
ImmutableStatisticalDistribution.java is threadsafe but creates a new object for every added sample or duration. The objects are immutable and consist of primitive fields only, making it easier for the garbage collector to make assumptions. The impact on performance and memory was therefore assumed to be low. This issue tests that assumption and the tests should be re-used when implementing a mutable version of StatisticalDistribution.
The text was updated successfully, but these errors were encountered:
ImmutableStatisticalDistribution.java is threadsafe but creates a new object for every added sample or duration. The objects are immutable and consist of primitive fields only, making it easier for the garbage collector to make assumptions. The impact on performance and memory was therefore assumed to be low. This issue tests that assumption and the tests should be re-used when implementing a mutable version of StatisticalDistribution.
The text was updated successfully, but these errors were encountered: