addSamplingSchema method

void addSamplingSchema(
  1. SamplingSchema schema
)

Adds all sampling configurations from another schema to this schema. If a configuration in schema is already in this schema, its value is overwritten.

Implementation

void addSamplingSchema(SamplingSchema schema) =>
    configurations.addAll(schema.configurations);