public interface TimelineMethodsAsync
Modifier and Type | Method and Description |
---|---|
void |
getFriendsTimeline()
Deprecated.
use
getHomeTimeline() instead |
void |
getFriendsTimeline(Paging paging)
Deprecated.
use
getHomeTimeline(Paging) instead |
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 |
getPublicTimeline()
Returns the 20 most recent statuses from non-protected users who have set a custom user icon.
|
void |
getRetweetedByMe()
Returns the 20 most recent retweets posted by the authenticating user.
|
void |
getRetweetedByMe(Paging paging)
Returns the 20 most recent retweets posted by the authenticating user.
|
void |
getRetweetedByUser(long userId,
Paging paging)
Returns the 20 most recent retweets posted by the specified user.
|
void |
getRetweetedByUser(java.lang.String screenName,
Paging paging)
Returns the 20 most recent retweets posted by the specified user.
|
void |
getRetweetedToMe()
Returns the 20 most recent retweets posted by the authenticating user's friends.
|
void |
getRetweetedToMe(Paging paging)
Returns the 20 most recent retweets posted by the authenticating user's friends.
|
void |
getRetweetedToUser(long userId,
Paging paging)
Returns the 20 most recent retweets posted by users the specified user follows.
|
void |
getRetweetedToUser(java.lang.String screenName,
Paging paging)
Returns the 20 most recent retweets posted by users the specified user follows.
|
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 getPublicTimeline()
void getHomeTimeline()
void getHomeTimeline(Paging paging)
paging
- controls paginationvoid getFriendsTimeline()
getHomeTimeline()
insteadvoid getFriendsTimeline(Paging paging)
getHomeTimeline(Paging)
insteadpaging
- 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 getMentions()
void getMentions(Paging paging)
paging
- controls paginationvoid getRetweetedByMe()
void getRetweetedByMe(Paging paging)
paging
- controls paginationvoid getRetweetedToMe()
void getRetweetedToMe(Paging paging)
paging
- controls paginationvoid getRetweetsOfMe()
void getRetweetsOfMe(Paging paging)
paging
- controls paginationvoid getRetweetedToUser(java.lang.String screenName, Paging paging)
screenName
- the user to viewpaging
- controls pagination. Supports since_id, max_id, count and page parameters.void getRetweetedToUser(long userId, Paging paging)
userId
- the user to viewpaging
- controls pagination. Supports since_id, max_id, count and page parameters.void getRetweetedByUser(java.lang.String screenName, Paging paging)
screenName
- the user to viewpaging
- controls pagination. Supports since_id, max_id, count and page parameters.void getRetweetedByUser(long userId, Paging paging)
userId
- the user to viewpaging
- controls pagination. Supports since_id, max_id, count and page parameters.