Skip to content

Commit

Permalink
[TACHYON-1287] Add Javadoc for start() in LeaderSelectorClient.java
Browse files Browse the repository at this point in the history
  • Loading branch information
cybermaster committed Nov 14, 2015
1 parent e07eedd commit 7385985
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions common/src/main/java/tachyon/LeaderSelectorClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,11 @@ public void setCurrentMasterThread(Thread currentMasterThread) {
mCurrentMasterThread = Preconditions.checkNotNull(currentMasterThread);
}

/**
* Start the Leader selection
*
* @throws IOException
*/
public void start() throws IOException {
mLeaderSelector.start();
}
Expand Down

0 comments on commit 7385985

Please sign in to comment.