Interface LimitApi


public interface LimitApi
All accounts, by default, have a preconfigured set of thresholds (or limits) to manage capacity and prevent abuse of the system. The system recognizes two kinds of limits: rate limits and absolute limits. Rate limits are thresholds that are reset after a certain amount of time passes. Absolute limits are fixed.
  • Method Summary

    Modifier and Type
    Method
    Description
    Provides a list of all applicable limits.
    All applicable limit types.
  • Method Details

    • list

      @Named("limits:list") @GET @Consumes("application/json") @Path("/limits") Limits list()
      Provides a list of all applicable limits.
    • listTypes

      @Named("limits:list") @GET @Consumes("application/json") @Path("/limits/types") Iterable<String> listTypes()
      All applicable limit types.