Skip to content

Instantly share code, notes, and snippets.

@Jayasagar
Created December 17, 2017 15:19
Show Gist options
  • Save Jayasagar/36bc0e8ac1a8d2cd4ca2c462ce580247 to your computer and use it in GitHub Desktop.
Save Jayasagar/36bc0e8ac1a8d2cd4ca2c462ce580247 to your computer and use it in GitHub Desktop.
boolean isAlDevicesRunnig = consumerList
.stream()
.flatMap(consumer -> consumer.getThings().stream())
// 'allMatch' is a terminal operation
.allMatch(Thing::isRunning);
System.out.println(isAlDevicesRunnig);
// Output : true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment