Radio example implementation

This commit is contained in:
2021-09-28 15:35:56 +02:00
parent 9cdbb84076
commit 2ad5deac3e
26 changed files with 318 additions and 0 deletions

5
channelapi/bnd.bnd Normal file
View File

@@ -0,0 +1,5 @@
Bundle-Version: 1.0.0
Export-Package: channelapi
-buildfeatures:
-buildpath:

View File

@@ -0,0 +1,5 @@
package channelapi;
public interface Channel {
Stream getStream();
}

View File

@@ -0,0 +1,5 @@
package channelapi;
public interface Stream {
String read();
}

View File

@@ -0,0 +1,2 @@
@org.osgi.annotation.versioning.Version("1.0.0")
package channelapi;