mirror of https://github.com/sbt/sbt.git
7 lines
151 B
Java
7 lines
151 B
Java
|
|
package xsbti.compile;
|
||
|
|
|
||
|
|
public interface CompileProgress {
|
||
|
|
void startUnit(String phase, String unitPath);
|
||
|
|
|
||
|
|
boolean advance(int current, int total);
|
||
|
|
}
|