summaryrefslogtreecommitdiff
path: root/src/de/danoeh/antennapod/util/ShownotesProvider.java
blob: d273e0b8fca9fc162709916475c12be55a01282a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package de.danoeh.antennapod.util;

import java.util.concurrent.Callable;
import java.util.concurrent.FutureTask;

/**
 * Created by daniel on 04.08.13.
 */
public interface ShownotesProvider {
    /**
     * Loads shownotes. If the shownotes have to be loaded from a file or from a
     * database, it should be done in a separate thread. After the shownotes
     * have been loaded, callback.onShownotesLoaded should be called.
     */
    public Callable<String> loadShownotes();

}