Skip to content

Commit cf221a0

Browse files
committed
fix doc
Signed-off-by: Yashash H L <[email protected]>
1 parent ce7a84c commit cf221a0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/main/java/io/numaproj/numaflow/accumulator/AccumulatorActor.java

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
import io.numaproj.numaflow.accumulator.v1.AccumulatorOuterClass;
1010
import lombok.AllArgsConstructor;
1111

12+
/**
13+
* Accumulator Actor is responsible for invoking accumulator handle and handling exceptions.
14+
*/
1215
@AllArgsConstructor
1316
public class AccumulatorActor extends AbstractActor {
1417
private Accumulator accumulator;

src/main/java/io/numaproj/numaflow/accumulator/model/Accumulator.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,7 @@ public abstract class Accumulator {
1111
*
1212
* @param datum current message to be processed by the accumulator
1313
* @param outputStream observer for sending the output {@link Message} to the
14-
* output
15-
* stream.
14+
* output stream.
1615
*/
1716
public abstract void processMessage(
1817
Datum datum,

0 commit comments

Comments
 (0)