All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.rocketmq.shaded.io.opentelemetry.sdk.internal.RandomSupplier Maven / Gradle / Ivy

There is a newer version: 5.0.7
Show newest version
/*
 * Copyright The OpenTelemetry Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.apache.rocketmq.shaded.io.opentelemetry.sdk.internal;

import java.util.Random;
import java.util.concurrent.ThreadLocalRandom;
import java.util.function.Supplier;

/**
 * Provides random number generater constructor utilities.
 *
 * 

This class is internal and is hence not for public use. Its APIs are unstable and can change * at any time. */ public final class RandomSupplier { private RandomSupplier() {} /** * Returns the platform default for random number generation. * *

The underlying implementation attempts to use {@link java.util.concurrent.ThreadLocalRandom} * on platforms where this is the most efficient. */ public static Supplier platformDefault() { // note: check borrowed from OkHttp's check for Android. if ("Dalvik".equals(System.getProperty("java.vm.name"))) { return AndroidFriendlyRandomHolder.INSTANCE; } return ThreadLocalRandom::current; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy