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

import java.util.concurrent.Callable;

/**
 * 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();

}