Package org.geotools.caching.grid.spatialindex

Examples of org.geotools.caching.grid.spatialindex.GridInvalidatingVisitor


    /**
     * Removes an area from the cache.
     */
    public void remove(Envelope e) {
      GridInvalidatingVisitor v = new GridInvalidatingVisitor(this.tracker);
        lock.writeLock().lock();
        try {
            if (e == null){
                e = getBounds();//no envelope specified so assume everything
            }
View Full Code Here


    /**
     * Unregisters all nodes in a given envelope.
     */
    protected void unregister(Envelope e){
        Region r = CacheUtil.convert(e);
        GridInvalidatingVisitor v = new GridInvalidatingVisitor(this.tracker, r);
       
        lock.writeLock().lock();
        try {
            this.tracker.containmentQuery(r, v);
        } finally {
View Full Code Here

TOP

Related Classes of org.geotools.caching.grid.spatialindex.GridInvalidatingVisitor

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.