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

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

The newest version!
package com.github.thorbenkuck.network.stream;

import java.util.List;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy