Examples of INotifiable


Examples of com.persiste.sdk.INotifiable

    Sdk.LOG_SERVICE_APP_UNICID="4F59CB0433Z1C221869268" ;
    Sdk.LOG_SERVICE_API_KEY="4F59695A496E4853357468" ;
    Sdk.LOG_SERVICE_API_SECRET="not in use in this sdk";
   
    //initialise service callback passing true will make all service call to be performed asynchronously
    LogServiceClient.initialise(new INotifiable() {
      @Override
      public void LoggingClientCompleted(LogserviceResponse response, boolean http_error_flag) {
        //check http error and service call status
        if(response!=null){
          System.out.println(response.getStatus());
View Full Code Here

Examples of com.persiste.sdk.INotifiable

import com.persiste.sdk.json.JSONValue;
import com.persiste.sdk.json.parser.JSONParser;

public class Tester {
  public static void main(String args[]){
    HttpClientWrapper.setParams(new INotifiable() {
      @Override
      public void LoggingClientCompleted(JSONObject response, boolean http_error_flag) {
        System.out.println(response);
      }
    }, true);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.