16 lines
259 B
Java
16 lines
259 B
Java
package com.tridium.ndriver.comm;
|
|
|
|
public interface IFragmentable {
|
|
NMessage getFragmentAck();
|
|
|
|
Object getHash();
|
|
|
|
int getTimeout();
|
|
|
|
boolean isFinalFragment();
|
|
|
|
void merge(IFragmentable iFragmentable) throws Exception;
|
|
|
|
int size();
|
|
}
|