Package com.inadco.hbl.api

Examples of com.inadco.hbl.api.Cube


    }

    public Cube getCube(String cubeName) throws HblException {
        Map<String, Cube> map, update;
        map = cubeCache.get();
        Cube cube = map == null ? null : map.get(cubeName);

        // TTL check
        if (cube != null && (cube instanceof SimpleCube)) {
            SimpleCube scube = (SimpleCube) cube;
            if (System.currentTimeMillis() - scube.getTimestamp() >= cubeCacheTTL) {
View Full Code Here

TOP

Related Classes of com.inadco.hbl.api.Cube

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.