mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 11:00:38 +00:00
Refactor command creation
This commit is contained in:
parent
47143a90e1
commit
af292d8f0e
45 changed files with 436 additions and 282 deletions
|
@ -2,6 +2,7 @@ package org.asamk.signal.commands;
|
|||
|
||||
import net.sourceforge.argparse4j.inf.Namespace;
|
||||
|
||||
import org.asamk.signal.OutputWriter;
|
||||
import org.asamk.signal.commands.exceptions.CommandException;
|
||||
import org.asamk.signal.manager.Manager;
|
||||
|
||||
|
@ -9,10 +10,14 @@ import java.util.List;
|
|||
|
||||
public interface MultiLocalCommand extends LocalCommand {
|
||||
|
||||
void handleCommand(Namespace ns, List<Manager> m, final SignalCreator c) throws CommandException;
|
||||
void handleCommand(
|
||||
Namespace ns, List<Manager> m, SignalCreator c, OutputWriter outputWriter
|
||||
) throws CommandException;
|
||||
|
||||
@Override
|
||||
default void handleCommand(final Namespace ns, final Manager m) throws CommandException {
|
||||
handleCommand(ns, List.of(m), null);
|
||||
default void handleCommand(
|
||||
final Namespace ns, final Manager m, final OutputWriter outputWriter
|
||||
) throws CommandException {
|
||||
handleCommand(ns, List.of(m), null, outputWriter);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue