@InterfaceAudience.Private public class Leases extends HasThread
These external clients hold resources in the server class. Those resources need to be released if the external client fails to send a heartbeat after some interval of time passes.
The Leases class is a general reusable class for this kind of pattern. An instance of the Leases class will create a thread to do its dirty work. You should close() the instance if you want to clean up the thread properly.
NOTE: This class extends Thread rather than Chore because the sleep time can be interrupted when there is something to do, rather than the Chore sleep time which is invariant.
| Modifier and Type | Class and Description | 
|---|---|
(package private) static class  | 
Leases.Lease
This class tracks a single Lease. 
 | 
static class  | 
Leases.LeaseStillHeldException
Thrown if we are asked to create a lease but lease on passed name already
 exists. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
protected int | 
leaseCheckFrequency  | 
private Map<String,Leases.Lease> | 
leases  | 
private static org.slf4j.Logger | 
LOG  | 
static int | 
MIN_WAIT_TIME  | 
protected boolean | 
stopRequested  | 
| Constructor and Description | 
|---|
Leases(int leaseCheckFrequency)
Creates a lease monitor 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
addLease(Leases.Lease lease)
Inserts lease. 
 | 
void | 
cancelLease(String leaseName)
Client explicitly cancels a lease. 
 | 
void | 
close()
Shut down this Leases instance. 
 | 
void | 
closeAfterLeasesExpire()
Shuts down this lease instance when all outstanding leases expire. 
 | 
Leases.Lease | 
createLease(String leaseName,
           int leaseTimeoutPeriod,
           LeaseListener listener)
Create a lease and insert it to the map of leases. 
 | 
(package private) Leases.Lease | 
removeLease(String leaseName)
Remove named lease. 
 | 
void | 
renewLease(String leaseName)
Renew a lease 
 | 
void | 
run()  | 
getName, getThread, interrupt, isAlive, isInterrupted, join, join, join, setDaemon, setName, setPriority, setUncaughtExceptionHandler, startprivate static final org.slf4j.Logger LOG
public static final int MIN_WAIT_TIME
private final Map<String,Leases.Lease> leases
protected final int leaseCheckFrequency
protected volatile boolean stopRequested
public Leases(int leaseCheckFrequency)
leaseCheckFrequency - - how often the lease should be checked
          (milliseconds)public void run()
run in interface Runnablerun in class HasThreadThread.run()public void closeAfterLeasesExpire()
close() but rather than violently end all leases, waits
 first on extant leases to finish.  Use this method if the lease holders
 could lose data, leak locks, etc.  Presumes client has shutdown
 allocation of new leases.public void close()
public Leases.Lease createLease(String leaseName, int leaseTimeoutPeriod, LeaseListener listener) throws Leases.LeaseStillHeldException
leaseName - name of the leaseleaseTimeoutPeriod - length of the lease in millisecondslistener - listener that will process lease expirationsLeases.LeaseStillHeldExceptionpublic void addLease(Leases.Lease lease) throws Leases.LeaseStillHeldException
lease - Leases.LeaseStillHeldExceptionpublic void renewLease(String leaseName) throws LeaseException
leaseName - name of leaseLeaseExceptionpublic void cancelLease(String leaseName) throws LeaseException
leaseName - name of leaseLeaseExceptionLeases.Lease removeLease(String leaseName) throws LeaseException
addLease(Lease)leaseName - name of leaseLeaseExceptionCopyright © 2007–2020 The Apache Software Foundation. All rights reserved.