public interface ILeaderElector extends Closeable
The interface for leader election.
Modifier and Type | Method and Description |
---|---|
void |
addToLeaderLockQueue()
queue up for leadership lock.
|
void |
close()
Method called to allow for cleanup.
|
List<NimbusInfo> |
getAllNimbuses() |
NimbusInfo |
getLeader() |
boolean |
isLeader() |
void |
prepare(Map conf)
Method guaranteed to be called as part of initialization of leader elector instance.
|
void |
removeFromLeaderLockQueue()
Removes the caller from the leader lock queue.
|
void prepare(Map conf)
Method guaranteed to be called as part of initialization of leader elector instance.
conf
- configurationvoid addToLeaderLockQueue() throws Exception
queue up for leadership lock. The call returns immediately and the caller must check isLeader() to perform any leadership action. This method can be called multiple times so it needs to be idempotent.
Exception
void removeFromLeaderLockQueue() throws Exception
Removes the caller from the leader lock queue. If the caller is leader also releases the lock. This method can be called multiple times so it needs to be idempotent.
Exception
boolean isLeader() throws Exception
Exception
NimbusInfo getLeader()
List<NimbusInfo> getAllNimbuses() throws Exception
Exception
void close()
Method called to allow for cleanup. once close this object can not be reused.
close
in interface AutoCloseable
close
in interface Closeable
Copyright © 2019 The Apache Software Foundation. All Rights Reserved.