Example usage for Java twitter4j RateLimitStatus fields, constructors, methods, implement or subclass
The text is from its open source code.
int | getLimit() Returns the current limit in effect This value is identical to the "X-Rate-Limit-Limit" response header. |
int | getRemaining() Returns the remaining number of API requests available. This value is identical to the "X-Rate-Limit-Remaining" response header. |
int | getResetTimeInSeconds() Returns the seconds the current rate limiting period ends. This should be a same as getResetTime().getTime()/1000. |
int | getSecondsUntilReset() Returns the amount of seconds until the current rate limiting period ends. This is a value provided/calculated only by Twitter4J for handiness and not a part of the twitter API spec. |