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

it.netgrid.bauer.helpers.NOPTopic Maven / Gradle / Ivy

There is a newer version: 1.1.6
Show newest version
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