co.elastic.apm.agent.sdk.weakconcurrent.WeakConcurrent Maven / Gradle / Ivy
The newest version!
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package co.elastic.apm.agent.sdk.weakconcurrent;
import co.elastic.apm.agent.sdk.internal.InternalUtil;
import javax.annotation.Nullable;
import java.util.ServiceLoader;
public final class WeakConcurrent {
private static final WeakConcurrentProvider supplier;
static {
supplier = InternalUtil.getServiceProvider(WeakConcurrentProvider.class);
}
/**
* A shorthand for {@code WeakConcurrent.weakMapBuilder().build()}
* to avoid having to specify the generic arguments in simple cases.
*/
public static WeakMap buildMap() {
return supplier.weakMapBuilder().build();
}
public static WeakMapBuilder weakMapBuilder() {
return supplier.weakMapBuilder();
}
/**
* A shorthand for {@code WeakConcurrent.threadLocalBuilder().build()}
* to avoid having to specify the generic arguments in simple cases.
*/
public static DetachedThreadLocal buildThreadLocal() {
return supplier.threadLocalBuilder().build();
}
public static ThreadLocalBuilder threadLocalBuilder() {
return supplier.threadLocalBuilder();
}
public static WeakSet buildSet() {
return supplier.buildSet();
}
/**
* This is an internal class.
* Provides the implementation for creating weak concurrent maps/sets/thread locals.
*/
public interface WeakConcurrentProvider {
WeakMapBuilder weakMapBuilder();
ThreadLocalBuilder threadLocalBuilder();
WeakSet buildSet();
}
public interface WeakMapBuilder {
WeakMapBuilder withInitialCapacity(int initialCapacity);
WeakMapBuilder withDefaultValueSupplier(@Nullable WeakMap.DefaultValueSupplier defaultValueSupplier);
WeakMap build();
}
public interface ThreadLocalBuilder {
ThreadLocalBuilder withDefaultValueSupplier(@Nullable WeakMap.DefaultValueSupplier defaultValueSupplier);
DetachedThreadLocal build();
}
}