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

com.oath.micro.server.errors.ErrorBus Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package com.oath.micro.server.errors;

import com.google.common.eventbus.EventBus;

public class ErrorBus {

	private static EventBus errorBus;

	public static synchronized void setErrorBus(final EventBus bus){
		errorBus = bus;
	}
	public void post(final Object o){
		if(errorBus!=null) {
			errorBus.post(o);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy