Description
The option group ("<tokenize token="\n" group="1000"/>",".tokenize("\n", 1000)") doesn't exist when we use the Tokenize DSL after a body expression
.split(body(String.class).tokenize("\n")).streaming()
but only when we create append the .tokenize() DSL to the splitter
.split().tokenize("\n",3).streaming()
Question : Is it the expected behaviour or something missing ?