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
{{ message }}
This repository has been archived by the owner on Jul 18, 2023. It is now read-only.
Most of the time, points are collected one by one by using one of the public methods of MetricsCollector. For every collected point however, an array has to be allocated because all the points go through the IPointEmitter.Emit(PointData[] points) method.
I propose to add a method virtual Emit(PointData point) to MetricsCollector that can be overriden by subclasses. The default implementation can simply delegate to the array accepting method.
The text was updated successfully, but these errors were encountered:
cypressious
added a commit
to GreenParrotGmbH/influxdb-csharp
that referenced
this issue
May 8, 2018
Most of the time, points are collected one by one by using one of the public methods of
MetricsCollector
. For every collected point however, an array has to be allocated because all the points go through theIPointEmitter.Emit(PointData[] points)
method.I propose to add a method
virtual Emit(PointData point)
toMetricsCollector
that can be overriden by subclasses. The default implementation can simply delegate to the array accepting method.The text was updated successfully, but these errors were encountered: