public interface TimelinesResourcesAsync
| Modifier and Type | Method and Description | 
|---|---|
void | 
getHomeTimeline()
Returns the 20 most recent statuses, including retweets, posted by the authenticating user and that user's friends. 
 | 
void | 
getHomeTimeline(Paging paging)
Returns the 20 most recent statuses, including retweets, posted by the authenticating user and that user's friends. 
 | 
void | 
getMentions()
Returns the 20 most recent replies (status updates prefixed with @username) to the authenticating user. 
 | 
void | 
getMentions(Paging paging)
Returns the 20 most recent replies (status updates prefixed with @username) to the authenticating user. 
 | 
void | 
getRetweetsOfMe()
Returns the 20 most recent tweets of the authenticated user that have been retweeted by others. 
 | 
void | 
getRetweetsOfMe(Paging paging)
Returns the 20 most recent tweets of the authenticated user that have been retweeted by others. 
 | 
void | 
getUserTimeline()
Returns the 20 most recent statuses posted from the authenticating user. 
 | 
void | 
getUserTimeline(long userId)
Returns the 20 most recent statuses posted from the authenticating user. 
 | 
void | 
getUserTimeline(long userId,
               Paging paging)
Returns the 20 most recent statuses posted from the authenticating user. 
 | 
void | 
getUserTimeline(Paging paging)
Returns the 20 most recent statuses posted from the authenticating user. 
 | 
void | 
getUserTimeline(java.lang.String screenName)
Returns the 20 most recent statuses posted from the authenticating user. 
 | 
void | 
getUserTimeline(java.lang.String screenName,
               Paging paging)
Returns the 20 most recent statuses posted from the authenticating user. 
 | 
void getMentions()
void getMentions(Paging paging)
paging - controls paginationvoid getUserTimeline(java.lang.String screenName,
                   Paging paging)
screenName - Specifies the screen name of the user for whom to return the user_timeline.paging - controls paginationvoid getUserTimeline(long userId,
                   Paging paging)
userId - Specifies the ID of the user for whom to return the user_timeline.paging - controls paginationvoid getUserTimeline(Paging paging)
paging - controls paginationvoid getUserTimeline(java.lang.String screenName)
screenName - Specifies the screen name of the user for whom to return the user_timeline.void getUserTimeline(long userId)
userId - Specifies the ID of the user for whom to return the user_timeline.void getUserTimeline()
void getHomeTimeline()
void getHomeTimeline(Paging paging)
paging - controls paginationvoid getRetweetsOfMe()
void getRetweetsOfMe(Paging paging)
paging - controls pagination. Supports since_id, max_id, count and page parameters.