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.
Ooops... a bit embarassing.
Some methods call .thenApply instead of .thenCompose.
.thenApply
.thenCompose
Here's an example
.thenApply( pigs -> { pigs.get( 0 ).setName( "One updated" ); pigs.get( 1 ).setName( "Two updated" ); return s.update( 10, pigs.toArray() ); } )