Package org.geowebcache.diskquota.storage

Examples of org.geowebcache.diskquota.storage.Quota.subtract()


                            .get(transaction, tileSet.getId(), LockMode.DEFAULT);
                    global = usedQuotaByTileSetId.get(transaction, GLOBAL_QUOTA_NAME,
                            LockMode.DEFAULT);

                    tileSets.delete();
                    global.subtract(freed.getBytes());
                    usedQuotaById.put(transaction, global);
                }
            } finally {
                tileSets.close();
            }
View Full Code Here


                                    LockMode.DEFAULT);
                            global = usedQuotaByTileSetId.get(transaction, GLOBAL_QUOTA_NAME,
                                    LockMode.DEFAULT);

                            tileSets.delete();
                            global.subtract(freed.getBytes());
                            usedQuotaById.put(transaction, global);
                        }
                    }
                } finally {
                    tileSets.close();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.