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

com.github.thorbenkuck.network.stream.EventStream 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 interface EventStream {

	Subscription subscribe(Subscriber subscriber);

	List> getSubscriptions();

    default Subscription connectTo(DataStream eventStream) {
        return subscribe(eventStream::push);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy