/** * Copyright (c) 2014-2017 by the respective copyright holders. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ package org.eclipse.smarthome.core.events; /** * The {@link EventPublisher} posts {@link Event}s through the Eclipse SmartHome event bus in an asynchronous way. * Posted events can be received by implementing the {@link EventSubscriber} callback interface. * * @author Stefan Bußweiler - Initial contribution */ public interface EventPublisher { /** * Posts an event through the event bus in an asynchronous way. * * @param event the event posted through the event bus * * @throws IllegalArgumentException if the event is null * @throws IllegalArgumentException if one of the event properties type, payload or topic is null * @throws IllegalStateException if the underlying event bus module is not available */ void post(Event event) throws IllegalArgumentException, IllegalStateException; }