1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00
k-9/k9mail-library/src/main/java/com/fsck/k9/mail/Pusher.java
2014-12-20 01:31:33 +01:00

18 lines
381 B
Java

package com.fsck.k9.mail;
import java.util.List;
public interface Pusher {
public void start(List<String> folderNames);
public void refresh();
public void stop();
/**
*
* @return milliseconds of required refresh interval
*/
public int getRefreshInterval();
public void setLastRefresh(long lastRefresh);
public long getLastRefresh();
}