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

/** Progress listener for IMAP operations working with items such as IMAPFetchMessagesOperation. */
public interface IMAPOperationItemProgressListener {
    /** Called when a progress has been notified. */
    void itemProgress(long current, long maximum);
}