Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 285 Bytes

java.md

File metadata and controls

23 lines (15 loc) · 285 Bytes

thenApply()

Takes in the data and returns data.

(data) => modifyData( data )

thenAccept()

Has access to the data and returns nothing

(data) => runthis()

thenRun()

Just runs the runnable passed into it, has no access to the data.

() => runthis()