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

org.reactfx.EventStreamBase Maven / Gradle / Ivy

There is a newer version: 1.11
Show newest version
package org.reactfx;

import java.util.function.Consumer;

import org.reactfx.util.NotificationAccumulator;


/**
 * Base class for event streams.
 *
 * @param  type of events emitted by this event stream.
 */
public abstract class EventStreamBase
extends ObservableBase, T>
implements ProperEventStream {

    public EventStreamBase() {
        super();
    }

    EventStreamBase(NotificationAccumulator, T, ?> pn) {
        super(pn);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy