Merge branch transfer-performance into master

This commit is contained in:
crschnick
2024-03-04 17:23:30 +00:00
parent bda50dba72
commit a7c046520c
24 changed files with 159 additions and 94 deletions
@@ -4,6 +4,20 @@ import lombok.NonNull;
public interface ShellOpenFunction {
static ShellOpenFunction unsupported() {
return new ShellOpenFunction() {
@Override
public CommandBuilder prepareWithoutInitCommand() {
throw new UnsupportedOperationException();
}
@Override
public CommandBuilder prepareWithInitCommand(@NonNull String command) {
throw new UnsupportedOperationException();
}
};
}
static ShellOpenFunction of(String b) {
return new ShellOpenFunction() {
@Override