10 lines
164 B
Java
10 lines
164 B
Java
package com.tridium.eibnetIp.stack;
|
|
|
|
import java.io.IOException;
|
|
|
|
public interface LinkLayerRequest {
|
|
int length();
|
|
|
|
byte[] toBytes() throws IOException;
|
|
}
|