Package org.jdesktop.wonderland.server.cell

Examples of org.jdesktop.wonderland.server.cell.ViewCellCacheMO$RevalidateCellsTask


        public String getBaseTaskType() {
            return KernelRunnable.class.getName();
        }

        public void run() throws Exception {
            ViewCellCacheMO cacheMO = (ViewCellCacheMO) dataService.createReferenceForId(cellCacheId).get();
            switch (type) {
                case LOAD:
                    // Check security and generate appropriate load messages
                    cacheMO.generateLoadMessagesService(cells);
                    break;
                case REVALIDATE:
                    cacheMO.revalidateCellsService(cells);
                    break;
                case UNLOAD:
                    // No need to check security, just generate unload messages
                    cacheMO.generateUnloadMessagesService(cells);
                    break;
            }

//            StringBuffer buf = new StringBuffer();
//            for(CellDescription c : cells)
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.server.cell.ViewCellCacheMO$RevalidateCellsTask

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.