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

net.sf.staccatocommons.util.Lazy Maven / Gradle / Ivy

There is a newer version: 2.3
Show newest version
/**
 *  Copyright (c) 2010-2012, The StaccatoCommons Team
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU Lesser General Public License as published by
 *  the Free Software Foundation; version 3 of the License.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU Lesser General Public License for more details.
 */

package net.sf.staccatocommons.util;

import net.sf.staccatocommons.defs.Thunk;
import net.sf.staccatocommons.lang.Option;

/**
 * 
 * A {@link Lazy} is an abstract wrapper around a value initialization code that
 * lets it postpone it creation, or even avoid it if not necessary, and ensure
 * that initialization is evaluated only once.
 * 

* Client code creating the lazy value just need to extend {@link Lazy} and * implement {@link #init()} method. Client code that needs to consume its * value, must call {@link #value()} *

* * {@link Lazy} is not thread safe. For a thread safe version, use * {@link Lazy.Atomic} * * @author flbulgarelli * * @param * */ public abstract class Lazy implements Thunk { private Option lazyValue = Option.none(); /** * Initializes the lazy value if necessary, and returns it. * * @return the lazy value */ public T value() { if (lazyValue.isUndefined()) lazyValue = Option.some(init()); return lazyValue.value(); } /** * Initializes the lazy value. This code will never be evaluated, if * {@link #value()} is never sent, or evaluated once and only once, if * {@link #value()} is sent at least once. * * @return the initialized value. May be null. */ protected abstract T init(); /** * A synchronized {@link Lazy} thunk * * @author flbulgarelli * * @param */ public abstract static class Atomic extends Lazy { @Override public final synchronized T value() { return super.value(); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy