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

xyz.block.ftl.Topic Maven / Gradle / Ivy

There is a newer version: 0.368.1
Show newest version
package xyz.block.ftl;

/**
 * A concrete definition of a topic. Extend this interface and annotate with {@code @TopicDefinition} to define a topic,
 * then inject this into verb methods to publish to the topic.
 *
 * @param 
 */
public interface Topic {

    void publish(T object);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy