We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e6b981 commit bc35f0cCopy full SHA for bc35f0c
batch.go
@@ -67,6 +67,11 @@ func (b *Batch) StartBatchProcessing() {
67
go b.ReadItems()
68
}
69
70
+// Unlock function will allow the batch processing to start with the multiple iteration
71
+func (b *Batch) Unlock() {
72
+ b.Islocked = false
73
+}
74
+
75
// ReadItems function will run infinitely to listen to the Resource channel and the received
76
// object marshaled with BatchItem and then send to the Producer Watcher channel for further
77
// processing.
0 commit comments