Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Save Input - transform - emit changed Input

Hi ppl,


I'm currently designing my first custom component with the new component kit.

I'm wondering if it's possible to first save all input rows e.g. in an arrayList, edit some rows/elements and later on emit them row by row?
Or do you really have to emit a row every time you reveive one like it works with the @elementlistener?
Hope there is another way to control the output. I would really appreciate some advice!

Thanks in advance
Johannes

Labels (2)
1 Reply
Anonymous
Not applicable
Author

Hello,

Here is an advanced tutorial to create an input component: create-an-input-component
In this tutorial the record are buffered so that you can read a bunch of records at once, transform them and then emit them one by one.
The logic is implemented with the BufferizedProducerSupport utility at the end of the tutorial.

Hopefully that helps.