add fds accessor
This commit is contained in:
parent
730ca1abf5
commit
85a3565dc3
1 changed files with 4 additions and 0 deletions
|
@ -9,6 +9,10 @@ public interface OutgoingRpcMessage {
|
|||
default void setFds(List<Integer> fds) {
|
||||
}
|
||||
|
||||
default List<Integer> getFds() {
|
||||
return List.of();
|
||||
}
|
||||
|
||||
void send();
|
||||
|
||||
int sizeInWords();
|
||||
|
|
Loading…
Reference in a new issue