We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 105cf0c commit 0a89877Copy full SHA for 0a89877
processor.go
@@ -121,6 +121,10 @@ func (e ErrorRecord) MarshalJSON() ([]byte, error) {
121
122
// MultiRecord is a record that contains multiple records. It is used to split a
123
// record into multiple records in processors.
124
+// If the processor returns a MultiRecord with 0 records, it is the same as
125
+// returning a FilterRecord.
126
+// If the processor returns a MultiRecord with 1 record, it is the same as
127
+// returning a SingleRecord.
128
type MultiRecord []opencdc.Record
129
130
func (MultiRecord) isProcessedRecord() {}
0 commit comments