Open
Description
Description
Return type of methods in Processor.Builder prevent method chaining.
Example:
co.elastic.clients.elasticsearch.ingest.Processor.of(b -> b
.attachment(a -> a)
.remove(r -> r)
)
This will not compile since attachment() and all other methods return ObjectBuilder<Processor>
instead of Builder