Example usage for org.apache.commons.lang3.concurrent LazyInitializer subclass-usage

List of usage examples for org.apache.commons.lang3.concurrent LazyInitializer subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.lang3.concurrent LazyInitializer subclass-usage.

Usage

From source file com.github.anba.test262.util.LazyInit.java

/**
 * Initializes an object lazily
 * 
 * @author Andr Bargull
 * 
 */

From source file com.newtranx.util.Lazy.java

public class Lazy<T> extends LazyInitializer<T> {

    private final Supplier<T> initializer;

    public Lazy(Supplier<T> initializer) {
        super();

From source file com.infinities.skyport.async.service.admin.concurrent.AsyncAccountSupportLazyInitializer.java

public class AsyncAccountSupportLazyInitializer extends LazyInitializer<AsyncAccountSupport> {

    @Override
    protected AsyncAccountSupport initialize() throws ConcurrentException {
        return null;
    }

From source file com.anrisoftware.sscontrol.profile.service.LazyInjector.java

class LazyInjector extends LazyInitializer<Injector> {

    private Injector parentInjector;

    public void setParentInjector(Injector injector) {
        parentInjector = injector;

From source file com.infinities.skyport.async.impl.service.concurrent.AsyncCIServicesImplLazyInitializer.java

public class AsyncCIServicesImplLazyInitializer extends LazyInitializer<AsyncCIServices> {

    private String configurationId;
    private ServiceProvider inner;
    private CIConfiguration configuration;
    private DistributedThreadPool threadPools;

From source file com.infinities.skyport.timeout.service.concurrent.TimedCIServicesLazyInitializer.java

public class TimedCIServicesLazyInitializer extends LazyInitializer<CIServices> {

    private ServiceProvider inner;
    private CIConfiguration computeConfiguration;
    private ExecutorService executor;

From source file com.infinities.skyport.async.impl.service.concurrent.AsyncAdminServicesImplLazyInitializer.java

public class AsyncAdminServicesImplLazyInitializer extends LazyInitializer<AsyncAdminServices> {

    private String configurationId;
    private ServiceProvider inner;
    private AdminConfiguration configuration;
    private DistributedThreadPool threadPools;

From source file com.infinities.skyport.async.impl.service.concurrent.AsyncNetworkServicesImplLazyInitializer.java

public class AsyncNetworkServicesImplLazyInitializer extends LazyInitializer<AsyncNetworkServices> {

    private String configurationId;
    private ServiceProvider inner;
    private NetworkConfiguration configuration;
    private DistributedThreadPool threadPools;

From source file com.infinities.skyport.async.impl.service.concurrent.AsyncComputeServicesImplLazyInitializer.java

public class AsyncComputeServicesImplLazyInitializer extends LazyInitializer<AsyncComputeServices> {

    private String configurationId;
    private ServiceProvider inner;
    private ComputeConfiguration configuration;
    private DistributedThreadPool threadPools;

From source file com.infinities.skyport.async.impl.service.concurrent.AsyncStorageServicesImplLazyInitializer.java

public class AsyncStorageServicesImplLazyInitializer extends LazyInitializer<AsyncStorageServices> {

    private String configurationId;
    private ServiceProvider inner;
    private StorageConfiguration configuration;
    private DistributedThreadPool threadPools;