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

com.fluxtion.runtime.dataflow.Tuple Maven / Gradle / Ivy

package com.fluxtion.runtime.dataflow;

import com.fluxtion.runtime.dataflow.groupby.MutableTuple;

public interface Tuple {
    static  Tuple build(F first, S second) {
        return new MutableTuple<>(first, second);
    }

    F getFirst();

    S getSecond();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy