12 lines
212 B
Java
12 lines
212 B
Java
package javax.baja.lonworks.io;
|
|
|
|
public interface LonLinkLayer {
|
|
void sendLonMessage(AppBuffer appBuffer);
|
|
|
|
void start() throws Exception;
|
|
|
|
void stop();
|
|
|
|
void verifySettings() throws Exception;
|
|
}
|