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

org.reactfx.TriEventSource Maven / Gradle / Ivy

There is a newer version: 2.0-M5
Show newest version
package org.reactfx;

import org.reactfx.util.TriConsumer;

public class TriEventSource
extends EventStreamBase>
implements TriEventStream, TriEventSink {

    @Override
    public final void push(A a, B b, C c) {
        forEachSubscriber(s -> s.accept(a, b, c));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy