Details
-
New Feature
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.10.4
-
None
-
Unknown
Description
We should improve the stream:file to be able to auto close when it
detects the splitter is done, as we have a completed property on the
exchange to tell us.
We can add an option on stream:file like closeOnDone=true
Like in this example :
from("file://C:/Temp/camel/input_test/?noop=true")
.split()
.tokenize("\n")
// Business lock with possible reject / enrich etc ...
.streaming()
.to("stream:file?fileName=C:/Temp/camel/output_test/out.csv&closeOnDone=true")
.end()
.end();