it.netgrid.bauer.helpers.NOPTopic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bauer-api Show documentation
Show all versions of bauer-api Show documentation
Standard Topic-Based Messaging Facade for Java
package it.netgrid.bauer.helpers;
import it.netgrid.bauer.EventHandler;
import it.netgrid.bauer.Topic;
public class NOPTopic implements Topic {
@Override
public String getName() {
return "NOP";
}
@Override
public void addHandler(EventHandler handler) {
// NOP
}
@Override
public void post(E event) {
// NOP
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy