You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: connect-file-pulse-plugin/src/main/java/io/streamthoughts/kafka/connect/filepulse/source/FilePulseSourceConnector.java
Copy file name to clipboardExpand all lines: connect-file-pulse-plugin/src/main/java/io/streamthoughts/kafka/connect/filepulse/source/FilePulseSourceTask.java
Copy file name to clipboardExpand all lines: connect-file-pulse-plugin/src/main/java/io/streamthoughts/kafka/connect/filepulse/source/KafkaFileStateReporter.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,7 @@ public class KafkaFileStateReporter implements StateListener {
53
53
54
54
/**
55
55
* Notify a state change for the specified source file.
Copy file name to clipboardExpand all lines: connect-file-pulse-plugin/src/main/java/io/streamthoughts/kafka/connect/filepulse/state/FileStateBackingStore.java
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -32,13 +32,15 @@ public class FileStateBackingStore extends KafkaStateBackingStore<SourceFile> {
32
32
/**
33
33
* Creates a new {@link FileStateBackingStore} instance.
34
34
*
35
-
* @param store the state store name.
36
-
* @param groupId the group attached to the backing store.
37
-
* @param configs the configuration.
35
+
* @param store the state store name.
36
+
* @param groupId the group attached to the backing store.
37
+
* @param configs the configuration.
38
+
* @param isProducerOnly is the backing store only used for writing data.
Copy file name to clipboardExpand all lines: connect-file-pulse-plugin/src/main/java/io/streamthoughts/kafka/connect/filepulse/storage/KafkaBasedLog.java
+27-26Lines changed: 27 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -73,7 +73,7 @@ enum States {
73
73
74
74
/**
75
75
* Create a new KafkaBasedLog object. This does not start reading the log and writing is not permitted until
76
-
* {@link #start()} is invoked.
76
+
* {@link #start(boolean)} is invoked.
77
77
*
78
78
* @param topic the topic to treat as a log
79
79
* @param producerConfigs configuration options to use when creating the internal producer. At a minimum this must
@@ -86,7 +86,7 @@ enum States {
86
86
* behavior of this class.
87
87
* @param consumedCallback callback to invoke for each {@link ConsumerRecord} consumed when tailing the log
88
88
* @param time Time interface
89
-
* @param initializer the component that should be run when this log is {@link #start() started}; may be null
89
+
* @param initializer the component that should be run when this log is {@link #start(boolean) started}; may be null
Copy file name to clipboardExpand all lines: connect-file-pulse-plugin/src/main/java/io/streamthoughts/kafka/connect/filepulse/storage/KafkaStateBackingStore.java
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ public class KafkaStateBackingStore<T> implements StateBackingStore<T> {
46
46
privatefinalMap<String, T> states = newHashMap<>();
0 commit comments