Package org.xtreemfs.foundation.flease

Examples of org.xtreemfs.foundation.flease.Flease


       
        // if the lease is outdated or broken, it will be ignored
        if (newLease.isValid()) {
           
            // update the old lease. assume FLease will always announce lease changes in order.
            Flease oldLease = null;
            synchronized (this) {
                oldLease = lease;
                lease = newLease;
                notifyAll();
            }
           
            // notify listener if the leaseholder has changed
            if (oldLease == null || !newLeaseHolder.equals(oldLease.getLeaseHolder())) {
               
                listener.updateLeaseHolder(getAddress(newLeaseHolder));
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.xtreemfs.foundation.flease.Flease

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.