2026-03-17 13:31:18 -07:00

10 lines
164 B
Java

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