com.tw.go.plugin.cmd.StreamConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of git-cmd Show documentation
Show all versions of git-cmd Show documentation
Common module that all Go CD plugins can use to poll Git repository.
package com.tw.go.plugin.cmd;
import java.util.List;
public interface StreamConsumer {
public void consumeLine(String line);
public List asList();
}