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

com.kolibrifx.plovercrest.server.internal.folds.FoldCallback Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2010-2017, KolibriFX AS. Licensed under the Apache License, version 2.0.
 */

package com.kolibrifx.plovercrest.server.internal.folds;

public interface FoldCallback {
    void onNext(String tableName, long timestamp, T data);

    /**
     * Called when the end of the stream is reached. This can happen multiple times as more input
     * data is received.
     */
    default void onEnd() {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy