Skip to content

Commit

Permalink
add javadoc for metadata log service constructor
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Kao <[email protected]>
  • Loading branch information
seankao-az committed Jun 22, 2024
1 parent 84c483a commit 68f6844
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
/**
* Flint metadata log service provides API for metadata log related operations on a Flint index
* regardless of underlying storage.
* <p>
* Custom implementations of this interface are expected to provide a public constructor with
* the signature {@code public MyCustomService(SparkConf sparkConf)} to be instantiated by
* the FlintMetadataLogServiceBuilder.
*/
public interface FlintMetadataLogService {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@

/**
* {@link FlintMetadataLogService} builder.
* <p>
* Custom implementations of {@link FlintMetadataLogService} are expected to provide a public
* constructor with the signature {@code public MyCustomService(SparkConf sparkConf)} to be
* instantiated by this builder.
*/
public class FlintMetadataLogServiceBuilder {
public static FlintMetadataLogService build(FlintOptions options, SparkConf sparkConf) {
Expand Down

0 comments on commit 68f6844

Please sign in to comment.