if (config.get(MIN_DELAY_SETTING) != null) {
strategy = strategy.withMinimumDelayMillis(config.get(MIN_DELAY_SETTING));
}
if (config.get(BUSY_THRESHOLD_SETTING) != null) {
strategy = strategy.withBusyThreshold(config.get(BUSY_THRESHOLD_SETTING));
}
if (config.get(MAX_SAMPLES_SETTING) != null) {
strategy = strategy.withMaxSamples(config.get(MAX_SAMPLES_SETTING));
}