All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.thorbenkuck.network.stream.ParallelEventStream Maven / Gradle / Ivy

There is a newer version: 0.4.0
Show newest version
package com.github.thorbenkuck.network.stream;

import java.util.List;

public class ParallelEventStream extends AbstractEventStream {
	@Override
	protected void dispatch(List> notifiableSubscriptions, T t) {
		notifiableSubscriptions.parallelStream()
				.forEach(sub -> sub.notify(t));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy