]> git.basschouten.com Git - openhab-addons.git/blob
f30310a27d1cde00f5638e885f359a1a3e5728df
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2024 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.insteon.internal.driver;
14
15 import org.eclipse.jdt.annotation.NonNullByDefault;
16
17 /**
18  * Interface for classes that want to listen to notifications from
19  * the driver.
20  *
21  * @author Bernd Pfrommer - Initial contribution
22  * @author Rob Nielsen - Port to openHAB 2 insteon binding
23  */
24 @NonNullByDefault
25 public interface DriverListener {
26     /**
27      * Notification that querying of the modems on all ports has successfully completed.
28      */
29     void driverCompletelyInitialized();
30
31     /**
32      * Notification that the driver was disconnected
33      */
34     void disconnected();
35 }