summaryrefslogtreecommitdiff
path: root/src/provider/TweetListener.java
blob: e58d58023ad25790c3a9a634bc9aea4295fb00cb (plain)
1
2
3
4
5
6
7
8
9
10
11
package provider;

import org.json.JSONObject;

/**
 * Callback when a new tweet is received.
 */
public interface TweetListener {

    public void tweetGenerated(JSONObject obj);
}