Uses of Interface
com.moesif.api.http.client.APICallBack
Packages that use APICallBack
Package
Description
-
Uses of APICallBack in com.moesif.api
Methods in com.moesif.api with parameters of type APICallBackModifier and TypeMethodDescriptionvoidIAPIController.createEventAsync(EventModel body, APICallBack<HttpResponse> callBack) Add Single API Event CallvoidIAPIController.createEventsBatchAsync(List<EventModel> body, APICallBack<HttpResponse> callBack) Add multiple API Events in a single batchvoidIAPIController.createEventsBatchAsync(List<EventModel> body, APICallBack<HttpResponse> callBack, boolean useGzip) Add multiple API Events in a single batchvoidIAPIController.getAppConfigAsync(APICallBack<HttpResponse> callBack) Get the Application config asyncvoidIAPIController.getGovernanceRulesAsync(APICallBack<HttpResponse> callBack) Get the Governance rules asyncvoidIHealthController.getHealthProbeAsync(APICallBack<StatusModel> callBack) Health Probe asyncvoidIAPIController.updateCompaniesBatchAsync(List<CompanyModel> body, APICallBack<HttpResponse> callBack) Update multiple Companies in a single batch asyncvoidIAPIController.updateCompanyAsync(CompanyModel body, APICallBack<HttpResponse> callBack) Update a Single Company asyncvoidIAPIController.updateSubscriptionAsync(SubscriptionModel body, APICallBack<HttpResponse> callBack) Update a Single Subscription asyncvoidIAPIController.updateSubscriptionsBatchAsync(List<SubscriptionModel> body, APICallBack<HttpResponse> callBack) Update multiple Subscriptions in a single batch asyncvoidIAPIController.updateUserAsync(UserModel body, APICallBack<HttpResponse> callBack) Update a Single User asyncvoidIAPIController.updateUsersBatchAsync(List<UserModel> body, APICallBack<HttpResponse> callBack) Update multiple Users in a single batch async -
Uses of APICallBack in com.moesif.api.controllers
Methods in com.moesif.api.controllers with parameters of type APICallBackModifier and TypeMethodDescriptionvoidAPIController.createActionAsync(ActionModel body, APICallBack<HttpResponse> callBack) Send a single custom action to the API asynchronously.voidAPIController.createActionsBatchAsync(List<ActionModel> body, APICallBack<HttpResponse> callBack) Send multiple custom actions to the API in a single batch asynchronously.voidAPIController.createEventAsync(EventModel body, APICallBack<HttpResponse> callBack) Add Single API Event CallvoidAPIController.createEventsBatchAsync(List<EventModel> body, APICallBack<HttpResponse> callBack) voidAPIController.createEventsBatchAsync(List<EventModel> body, APICallBack<HttpResponse> callBack, boolean useGzip) Add multiple API Events in a single batchvoidAPIController.getAppConfigAsync(APICallBack<HttpResponse> callBack) Get the Application config asyncvoidAPIController.getGovernanceRulesAsync(APICallBack<HttpResponse> callBack) Get the Governance rulesvoidHealthController.getHealthProbeAsync(APICallBack<StatusModel> callBack) Health Probe AsyncvoidAPIController.updateCompaniesBatchAsync(List<CompanyModel> body, APICallBack<HttpResponse> callBack) Update multiple Companies in a single batch asyncvoidAPIController.updateCompanyAsync(CompanyModel body, APICallBack<HttpResponse> callBack) Update a Single Company asyncvoidAPIController.updateSubscriptionAsync(SubscriptionModel body, APICallBack<HttpResponse> callBack) Update a Single Subscription asyncvoidAPIController.updateSubscriptionsBatchAsync(List<SubscriptionModel> body, APICallBack<HttpResponse> callBack) Update multiple Subscriptions in a single batch asyncvoidAPIController.updateUserAsync(UserModel body, APICallBack<HttpResponse> callBack) Update a Single User asyncvoidAPIController.updateUsersBatchAsync(List<UserModel> body, APICallBack<HttpResponse> callBack) Update multiple Users in a single batch async -
Uses of APICallBack in com.moesif.api.controllers.syncwrapper
Classes in com.moesif.api.controllers.syncwrapper that implement APICallBackModifier and TypeClassDescriptionclassAn APICallBack that captures the HTTP response and can be waited on An instance of this class can be passed to an API call as the APICallBack instance to capture the results of that call. -
Uses of APICallBack in com.moesif.api.http.client
Methods in com.moesif.api.http.client with parameters of type APICallBackModifier and TypeMethodDescriptionvoidHttpClient.executeAsBinaryAsync(HttpRequest request, APICallBack<HttpResponse> callBack) Execute a given HttpRequest to get binary response backvoidHttpClient.executeAsBinaryAsync(HttpRequest request, APICallBack<HttpResponse> callBack, boolean debug) voidUnirestClient.executeAsBinaryAsync(HttpRequest request, APICallBack<HttpResponse> callBack) Execute a given HttpRequest to get binary response backvoidUnirestClient.executeAsBinaryAsync(HttpRequest request, APICallBack<HttpResponse> callBack, boolean debug) voidHttpClient.executeAsStringAsync(HttpRequest request, APICallBack<HttpResponse> callBack) Execute a given HttpRequest to get string response backvoidUnirestClient.executeAsStringAsync(HttpRequest request, APICallBack<HttpResponse> callBack) Execute a given HttpRequest to get string response backprotected static voidUnirestClient.publishResponse(com.mashape.unirest.http.HttpResponse<?> response, HttpRequest request, APICallBack<HttpResponse> completionBlock, com.mashape.unirest.http.exceptions.UnirestException uniException) Publishes success or failure result as HttpResponse from a HttpRequestprotected static voidUnirestClient.publishResponse(com.mashape.unirest.http.HttpResponse<?> response, HttpRequest request, APICallBack<HttpResponse> completionBlock, com.mashape.unirest.http.exceptions.UnirestException uniException, boolean debug)