}
}
// Now try to determine whether any streams were added to the network.
final List<OutputStream> newStreams = new ArrayList<>();
for (OutputStreamContext output : update.streams()) {
boolean exists = false;
for (OutputStream stream : streams) {
if (stream.address().equals(output.address())) {
exists = true;
break;