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

net.intelie.pipes.Sink Maven / Gradle / Ivy

There is a newer version: 0.25.5
Show newest version
package net.intelie.pipes;

import net.intelie.pipes.types.RowFields;

public interface Sink {
    void onEvent(RowFields fields, RowList rows);

    void onRaw(RawEvent raw);

    public abstract class Empty implements Sink {
        @Override
        public void onRaw(RawEvent raw) {
        }

        @Override
        public void onEvent(RowFields fields, RowList rows) {
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy