Skip to content

Instantly share code, notes, and snippets.

@yusuke
Created April 25, 2011 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yusuke/940824 to your computer and use it in GitHub Desktop.
Save yusuke/940824 to your computer and use it in GitHub Desktop.
GAETwitter extends AsyncTwitter{
public void get(TwitterListener listener);
}
GAETwitter twitter = GAETwitterFacotry.getInstance();
twitter.getPublicTimeline().get(new TwitterAdapter(){
public void gotPublicTimeline(List<Status> statuses){
// do something
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment