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

internal.util.FileCachingLoader Maven / Gradle / Ivy

There is a newer version: 3.0.0-beta.13
Show newest version
package internal.util;

import internal.sdmxdl.NoOpCaching;
import java.lang.Iterable;
import java.util.Collections;
import java.util.Comparator;
import java.util.ServiceLoader;
import java.util.stream.StreamSupport;
import sdmxdl.file.spi.FileCaching;

/**
 * Custom service loader for {@link sdmxdl.file.spi.FileCaching}.
 * 
This class is thread-safe. *

Properties: *

    *
  • Quantifier: SINGLE
  • *
  • Fallback: {@link internal.sdmxdl.NoOpCaching}
  • *
  • Preprocessing: wrapper: none filters:[] sorters:[getFileCachingRank]
  • *
  • Mutability: NONE
  • *
  • Singleton: false
  • *
  • Name: internal.util.FileCachingLoader
  • *
  • Backend: null
  • *
  • Cleaner: null
  • *
  • Batch: false
  • *
  • Batch name: null
  • *
*/ public final class FileCachingLoader { private final Iterable source = ServiceLoader.load(FileCaching.class); private final FileCaching resource = doLoad(); private FileCaching doLoad() { return StreamSupport.stream(source.spliterator(), false) .sorted(Collections.reverseOrder(Comparator.comparingInt(FileCaching::getFileCachingRank))) .findFirst() .orElseGet(() -> NoOpCaching.INSTANCE); } /** * Gets a {@link sdmxdl.file.spi.FileCaching} instance. *
This method is thread-safe. * @return the current non-null value */ public FileCaching get() { return resource; } /** * Gets a {@link sdmxdl.file.spi.FileCaching} instance. *
This is equivalent to the following code: new FileCachingLoader().get() *
Therefore, the returned value might be different at each call. *
This method is thread-safe. * @return a non-null value */ public static FileCaching load() { return new FileCachingLoader().get(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy