org.yamcs.yarch.StreamSubscriber Maven / Gradle / Ivy
package org.yamcs.yarch;
@FunctionalInterface
public interface StreamSubscriber {
void onTuple(Stream stream, Tuple tuple);
default void streamClosed(Stream stream) {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy