aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/java/com/libmailcore/OperationQueueListener.java
blob: a23e196372b2799bdaf4fc00386f6926820bf7ae (plain)
1
2
3
4
5
6
7
8
9
10
package com.libmailcore;

/** Listener of the queue of operations. */
public interface OperationQueueListener {
    /** Called when an operation has just been added and operations start running. */
    void queueStartRunning();
    /** Called when all operations have ben run. */
    void queueStoppedRunning();
}