Fixed
Status Update
Comments
ap...@google.com <ap...@google.com> #2
Any suggestions on where such an interface might live? I don't think it makes sense for the interface to be in the drawerlayout artifact if you're specifically going to use the interface to *not* use DrawerLayout.
na...@google.com <na...@google.com> #3
androidx.customview would be a good candidate. This is used by all of the widget libraries.
Description
I see
Mode.Min
andMode.Max
were recently added, would it be possible to also add a Mode for P50/P90/P95/P99, or similar? For example we may expect the first execution of a block of code to be slower due to initializations, and faster on subsequent executions. It would be great to have a metric to measure this type of situation.Mode.Average
would be convenient. This can already be figured usingMode.Sum
since it supplies the count and total duration, but condensing the result into a single line would be nice.