io.smallrye.reactive.messaging.MergeableMetadata Maven / Gradle / Ivy
The newest version!
package io.smallrye.reactive.messaging;
/**
* Interface implemented by metadata class when they can be merged.
*
* Note that implementation can simply ignored the merged value and return the first one.
*
* @param the type of the metadata class
*/
public interface MergeableMetadata {
T merge(T other);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy