mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-15 14:05:05 -05:00
12d1097a24
approximating AOSP coding standards.
18 lines
381 B
Java
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();
|
|
}
|