19 lines
414 B
Java
19 lines
414 B
Java
package com.tridium.ndriver.comm;
|
|
|
|
import com.tridium.ndriver.datatypes.BCommConfig;
|
|
import javax.baja.spy.SpyWriter;
|
|
|
|
public interface ILinkLayer {
|
|
void resetStats();
|
|
|
|
void sendMessage(LinkMessage linkMessage) throws Exception;
|
|
|
|
void spy(SpyWriter spyWriter) throws Exception;
|
|
|
|
void start() throws Exception;
|
|
|
|
void stop();
|
|
|
|
void verifySettings(BCommConfig bCommConfig) throws Exception;
|
|
}
|