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 Detail

      • 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.