[OJElectronics] Add SignalR for requesting data from OJ Electronics cloud (#13782)

* Fixed some Nullable annotation warnings
* Use SignalR instead pooling

Signed-off-by: Christian Kittel <ckittel@gmx.de>
This commit is contained in:
Christian Kittel
2023-04-08 11:40:59 +02:00
committed by GitHub
parent 6748dfedd7
commit 64723db7aa
27 changed files with 716 additions and 207 deletions

View File

@@ -13,4 +13,21 @@
<artifactId>org.openhab.binding.ojelectronics</artifactId>
<name>openHAB Add-ons :: Bundles :: OJElectronics Binding</name>
<dependencies>
<!-- https://mvnrepository.com/artifact/com.github.signalr4j/signalr4j -->
<dependency>
<groupId>com.github.signalr4j</groupId>
<artifactId>signalr4j</artifactId>
<version>2.0.4</version>
<scope>compile</scope>
</dependency>
<!-- https://mvnrepository.com/artifact/org.java-websocket/Java-WebSocket -->
<dependency>
<groupId>org.java-websocket</groupId>
<artifactId>Java-WebSocket</artifactId>
<version>1.5.3</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>