streamCpuSamplesWithUserTag method

  1. @override
Future<Success> streamCpuSamplesWithUserTag(
  1. List<String> userTags
)
override

The streamCpuSamplesWithUserTag RPC allows for clients to specify which CPU samples collected by the profiler should be sent over the Profiler stream. When called, the VM will stream CpuSamples events containing CpuSample's collected while a user tag contained in userTags was active.

See Success.

Implementation

@override
Future<Success> streamCpuSamplesWithUserTag(List<String> userTags) =>
    _call('streamCpuSamplesWithUserTag', {'userTags': userTags});