org.tinystruct.mqtt.MessageQueue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tinystruct Show documentation
Show all versions of tinystruct Show documentation
A simple framework for Java development. Simple is hard, Complex is easy. Better thinking, better design.
package org.tinystruct.mqtt;
public interface MessageQueue {
void subscribe(String topic, MessageListener listener);
void publish(String topic, String message);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy