Skip to content

Commit

Permalink
Merge pull request #183 from breedx-splk/missing_javadoc
Browse files Browse the repository at this point in the history
Add missing javadocs on public methods
  • Loading branch information
LikeTheSalad authored Dec 13, 2023
2 parents 3353701 + f6964bb commit 2e1c353
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,17 @@ public void setDiskBufferingConfiguration(
this.diskBufferingConfiguration = diskBufferingConfiguration;
}

/**
* Sets the configuration so that network change monitoring, which is enabled by default, will
* not be started.
*/
public void disableNetworkChangeMonitoring() {
this.networkChangeMonitoringEnabled = false;
}

/**
* @return true if network change monitoring is enabled (default).
*/
public boolean isNetworkChangeMonitoringEnabled() {
return this.networkChangeMonitoringEnabled;
}
Expand Down

0 comments on commit 2e1c353

Please sign in to comment.