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

io.smallrye.mutiny.GroupedMulti Maven / Gradle / Ivy

There is a newer version: 2.8.0
Show newest version
package io.smallrye.mutiny;

/**
 * A specialization of {@link Multi} used by the {@code group} operation. It allows retrieving the computed key
 * associated with this {@link Multi}
 *
 * @param  the type of the key
 * @param  the type of the items emitted by this {@link Multi}
 */
public interface GroupedMulti extends Multi {

    /**
     * @return the key associated with this {@link GroupedMulti}
     */
    K key();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy