@@ -74,8 +74,8 @@ abstract class BasePartialProcessor {
74
74
* This method should be called when a record fails processing so that
75
75
* the processor can keep track of the error and the record that failed.
76
76
*
77
- * @param record Record that failed processing
78
- * @param error Error that was thrown
77
+ * @param record - Record that failed processing
78
+ * @param error - Error that was thrown
79
79
*/
80
80
public failureHandler (
81
81
record : EventSourceDataClassTypes ,
@@ -131,7 +131,7 @@ abstract class BasePartialProcessor {
131
131
* This is to ensure that the processor keeps track of the results and the records
132
132
* that succeeded and failed processing.
133
133
*
134
- * @param record Record to be processed
134
+ * @param record - Record to be processed
135
135
*/
136
136
public abstract processRecord (
137
137
record : BaseRecord
@@ -149,7 +149,7 @@ abstract class BasePartialProcessor {
149
149
* This is to ensure that the processor keeps track of the results and the records
150
150
* that succeeded and failed processing.
151
151
*
152
- * @param record Record to be processed
152
+ * @param record - Record to be processed
153
153
*/
154
154
public abstract processRecordSync (
155
155
record : BaseRecord
@@ -198,9 +198,9 @@ abstract class BasePartialProcessor {
198
198
* to allow for reusing the processor instance across multiple invocations
199
199
* by instantiating the processor outside of the Lambda function handler.
200
200
*
201
- * @param records Array of records to be processed
202
- * @param handler CallableFunction to process each record from the batch
203
- * @param options Options to be used during processing (optional)
201
+ * @param records - Array of records to be processed
202
+ * @param handler - CallableFunction to process each record from the batch
203
+ * @param options - Options to be used during processing (optional)
204
204
*/
205
205
public register (
206
206
records : BaseRecord [ ] ,
@@ -223,8 +223,8 @@ abstract class BasePartialProcessor {
223
223
* This method should be called when a record succeeds processing so that
224
224
* the processor can keep track of the result and the record that succeeded.
225
225
*
226
- * @param record Record that succeeded processing
227
- * @param result Result from record handler
226
+ * @param record - Record that succeeded processing
227
+ * @param result - Result from record handler
228
228
*/
229
229
public successHandler (
230
230
record : EventSourceDataClassTypes ,
0 commit comments