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

io.smallrye.reactive.messaging.MessagePublisherProvider Maven / Gradle / Ivy

The newest version!
package io.smallrye.reactive.messaging;

import java.util.concurrent.Flow.Publisher;

import org.eclipse.microprofile.reactive.messaging.Message;

/**
 * Framework-facing interface for the Emitter implementations.
 *
 * Via this interface Emitter implementations provide emitted {@link Message}s as a Reactive Streams {@link Publisher}.
 *
 *
 * @param  message payload type.
 */
public interface MessagePublisherProvider {

    Publisher> getPublisher();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy