19 lines
420 B
Java
19 lines
420 B
Java
package com.tridium.ndriver.comm;
|
|
|
|
import com.tridium.ndriver.datatypes.BCommConfig;
|
|
import javax.baja.spy.SpyWriter;
|
|
|
|
public interface IComm {
|
|
void resetStats();
|
|
|
|
void setDefaultListener(ICommListener iCommListener);
|
|
|
|
void spy(SpyWriter spyWriter) throws Exception;
|
|
|
|
void start() throws Exception;
|
|
|
|
void stop() throws Exception;
|
|
|
|
void verifySettings(BCommConfig bCommConfig) throws Exception;
|
|
}
|