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

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

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

import com.github.thorbenkuck.network.exceptions.EmptySubscriberListException;

import java.util.List;

public class StrictEventStream extends SimpleEventStream {

	@Override
	protected void dispatch(List> notifiableSubscriptions, T t) {
		if (notifiableSubscriptions.isEmpty()) {
			throw new EmptySubscriberListException("No Subscribers found for " + t);
		}
		super.dispatch(notifiableSubscriptions, t);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy