Uses of Interface
com.moesif.api.http.client.APICallBack
-
Packages that use APICallBack Package Description com.moesif.api com.moesif.api.controllers com.moesif.api.controllers.syncwrapper com.moesif.api.http.client -
-
Uses of APICallBack in com.moesif.api
Methods in com.moesif.api with parameters of type APICallBack Modifier and Type Method Description voidIAPIController. 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. 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. 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 APICallBack Modifier and Type Method Description voidAPIController. createEventAsync(EventModel body, APICallBack<HttpResponse> callBack)Add Single API Event CallvoidAPIController. createEventsBatchAsync(List<EventModel> body, APICallBack<HttpResponse> callBack)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. 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 APICallBack Modifier and Type Class Description classAPICallBackCatcher<T>An 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 APICallBack Modifier and Type Method Description voidHttpClient. executeAsBinaryAsync(HttpRequest request, APICallBack<HttpResponse> callBack)Execute a given HttpRequest to get binary response backvoidUnirestClient. executeAsBinaryAsync(HttpRequest request, APICallBack<HttpResponse> callBack)Execute a given HttpRequest to get binary response backvoidHttpClient. 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 HttpRequest
-