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

io.justdevit.kotlin.boost.eventbus.EventPublisher.kt Maven / Gradle / Ivy

The newest version!
package io.justdevit.kotlin.boost.eventbus

/**
 * Interface representing an object capable of publishing events to an event bus system.
 */
interface EventPublisher {

    /**
     * Publishes one or more events to the event bus system.
     *
     * @param events Events to be published.
     */
    fun publish(vararg events: Event)

    /**
     * Publishes one or more events to the event bus system.
     *
     * @param events Events to be published.
     */
    suspend fun coPublish(vararg events: Event)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy