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
I'd like to be able to return multiple measurements in a callback. These measurements will have different attributes so they will not conflict with one another. Before I implement this, I wanted to get some feedback on the best way to do this. My specific use is for an ObservableUpDownCounter for julia task work queue length, but I need to have them by threadid.
Would a vector of Tuple{T,NamedTuple} being returned be ok? Or a vector of Measurement{T}? Or perhaps either?
The text was updated successfully, but these errors were encountered:
I'd like to be able to return multiple measurements in a callback. These measurements will have different attributes so they will not conflict with one another. Before I implement this, I wanted to get some feedback on the best way to do this. My specific use is for an
ObservableUpDownCounter
for julia task work queue length, but I need to have them bythreadid
.Would a vector of
Tuple{T,NamedTuple}
being returned be ok? Or a vector ofMeasurement{T}
? Or perhaps either?The text was updated successfully, but these errors were encountered: