aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java/com/libmailcore/IMAPOperationProgressListener.java
blob: a9154354e29da11d92199fa18899ec4117c5b743 (plain)
1
2
3
4
5
6
7
package com.libmailcore;

/** Progress listener for IMAP operations working with stream of data. */
public interface IMAPOperationProgressListener {
    /** Called when a progress has been notified. */
    void bodyProgress(long current, long maximum);
}