Package xbird.util.lang

Examples of xbird.util.lang.MutableLong


    }

    public ThreadLocalCounter(final long initVal) {
        this.counter = new ThreadLocal<MutableLong>() {
            protected MutableLong initialValue() {
                return new MutableLong(initVal);
            }
        };
    }
View Full Code Here

TOP

Related Classes of xbird.util.lang.MutableLong

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.