io.github.laskowski.shell.output.ExtendedDefaultPublisher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shell-commander Show documentation
Show all versions of shell-commander Show documentation
Library to launch .bat and .sh scripts of your choice with different configurations. Allows you to read tasks and services output from terminal
package io.github.laskowski.shell.output;
import io.github.laskowski.shell.output.messages.MessageExclusionStrategy;
import javax.annotation.Nullable;
public class ExtendedDefaultPublisher extends DefaultPublisher implements Publisher {
public ExtendedDefaultPublisher(@Nullable MessageExclusionStrategy messageExclusionStrategy) {
super(messageExclusionStrategy);
}
public void startPublishing(Process process) {
super.startPublishing(process, true);
}
}