com.kolibrifx.plovercrest.server.folds.FoldManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plovercrest-server Show documentation
Show all versions of plovercrest-server Show documentation
Plovercrest server library.
The newest version!
/*
* Copyright (c) 2010-2017, KolibriFX AS. Licensed under the Apache License, version 2.0.
*/
package com.kolibrifx.plovercrest.server.folds;
import java.util.Collection;
import com.kolibrifx.common.Disposable;
import com.kolibrifx.lancebill.folds.CombineLatestFold;
public interface FoldManager {
Disposable registerFold(String outputTable, Collection inputTables, CombineLatestFold fold,
FoldCombinator combinator);
}