package hr.com.port.ips.eracun.service;

public interface SyncProgress {
    void onStart(String phase, int total);
    void onItem(String message, int done, int total);
    void onPhase(String phase);
    void onComplete();
    void onError(String message, Throwable t);
    boolean isCancelled();
}