Convertigo Client SDK is a set of native libraries used by mobile or Windows desktop applications to access Convertigo Server services.

Convertigo Client SDK is a set of native libraries used by mobile or Windows desktop applications to access Convertigo Server services. An application using the SDK can easily access Convertigo services such as Sequences and Transactions.

The Client SDK will abstract the programmer from handling the communication protocols, local cache, FullSync off line data managment, UI thread management and remote logging. So the developer can focus on building the application.

Convertigo Client SDK

Client SDK is available for:

  • Google Angular (Ex Angular 2) JavaScript framework as an NPM package

More information about Client SDK in the sections below

Installation Guide

Angular

C8oClientSDK for Angular is provided as a standard NPM package. You can use it in your package.json just like any other package. see

Convertigo SDK Angular

type this command in your console to install the SDK in your current Angular Project

 npm install c8osdkangular --save 

Programming Guide

Table of content

Initializing and creating a C8o instance for an Endpoint

For the .NET SDK, there is a common static initialization to be done before using the SDK feature. It prepares some platform specific features. After that, you will be able to create and use the C8o instance to interact with the Convertigo server and the Client SDK features.

For the Angular there is some imports and declaration to do in the app’s module to do.

For the Angular and Javascript there is a specific initialization to do.

For the Angular and Javascript a specific method must be called “finalized init” to be sure that initialization has been finished

A C8o instance is linked to a server through is endpoint and cannot be changed after.

You can have as many C8o instances (except Angular), pointing to a same or different endpoint. Each instance handles its own session and settings. We strongly recommend using a single C8o instance per application because server licensing can based on the number of sessions used.

    //Into app.module.ts
    import {C8o} from "c8osdkangular";
    import {HttpClientModule} from "@angular/common/http";

    @NgModule({
    imports: [
        BrowserModule,
        HttpClientModule
    ],
    providers: [
        C8o
    ]
    });

    //Into the target page
    import { C8o, C8oSettings } from "c8osdkangular";

    export class MyClass {

        // Instanciate c8o thanks to Angular di (dependency injection)
        constructor(private c8o: C8o) {
            
            // Call init method with a c8osettings class giving an endpoint
            this.c8o.init(new C8oSettings().setEndPoint("http://localhost:18080/convertigo/projects/template_Ionic2"));
            
            // Use the specific method to be sure that init has been finished 
            this.c8o.finalizeInit(()=>{
                // Do stuff with c8o object
            });
        }
    }
    
    import { C8o, C8oSettings } from "c8osdkjs"

    // Instantiate C8o
    const c8o = new C8o()

    // Call init method with a c8osettings class giving an endpoint
    c8o.init(new C8oSettings().setEndPoint("http://localhost:18080/convertigo/projects/template_Ionic2"));

    // Use the specific method to be sure that init has been finished 
    c8o.finalizeInit(()=>{
        // Do stuff with c8o object
    });
    

Advanced instance settings

The endpoint is the mandatory setting to get a C8o instance, but there is additional settings through the C8oSettings class.

A C8oSettings instance should be passed after the endpoint. Settings are copied inside the C8o instance and a C8oSettings instance can be modified and reused after the C8o constructor.

Setters of C8oSettings always return its own instance and can be chained.

A C8oSettings can be instantiated from an existing C8oSettings or C8o instance.

    //Into app.module.ts
    import {C8o} from "c8osdkangular";
    import {HttpClientModule} from "@angular/common/http";

    @NgModule({
    imports: [
        BrowserModule,
        HttpClientModule
    ],
    providers: [
        C8o
    ]
    });

    //Into the target page
    import { C8o, C8oSettings } from "c8osdkangular";

    export class MyClass {

        // Instanciate c8o thanks to Angular di (dependency injection)
        constructor(private c8o: C8o) {
            
            // Call init method with a c8osettings class giving an endpoint
            this.c8o.init(new C8oSettings().setEndPoint("http://localhost:18080/convertigo/projects/template_Ionic2"));
            
            // Use the specific method to be sure that init has been finished 
            this.c8o.finalizeInit(()=>{
                // Do stuff with c8o object
            });
        }
    }
    
    import { C8o, C8oSettings } from "c8osdkjs"
    
    // The only way
    let settings: C8oSettings = new C8oSettings();
    settings
        .setEndPoint("https://demo.convertigo.net/cems/projects/sampleMobileCtfGallery")
        .setDefaultDatabaseName("mydb_fullsync")
        .setTimeout(30000);
    //Then we need to assign C8oSettings object to our C8o object
    c8o.init(settings);

    //Then to use c8o Object and be sure that initialization has been properly done
    c8o.finalizeInit().then(() => {
        //Do stuff with c8o Object
    })

    // all settings can be retrieve from a C8o or C8oSettings instance
    let timeout : number = c8o.timeout;
    

Calling a Convertigo requestable

With a C8o instance you can call Convertigo Sequence and Transaction or make query to your local FullSync database. You must specify the result type you want: an XML Document or a JSON Object response. Returning XML Just use the c8o.callXml method to request a XML response.

    import { C8o, C8oSettings } from "c8osdkangular"
    // Assuming c8o is a C8o instance properly instanciated and initiated as describe above, and '.login' is the name of a sequence of your project

    // Here using Javascript's Promises with awaiter syntax 
    let result = await this.c8o.callJson('.login')
                        .async();

    // Here using Javascript's Promises with then/catch syntax
    this.c8o.callJson(".login")
        .async()
        .then((response)=>{
        //handle result
        });

    // Using C8oPromise that allow for example progress and Live. C8oPromise is described in Api doc in section Api documentation of this README
    this.c8o.callJson(".login")
        .then((response)=>{
        //handle result
        });
    
    import { C8o, C8oSettings } from "c8osdkjs"
    // Assuming c8o is a C8o instance properly instanciated and initiated as describe above, and '.login' is the name of a sequence of your project

    // Here using Javascript's Promises with awaiter syntax 
    let result = await this.c8o.callJson('.login')
                        .async();

    // Here using Javascript's Promises with then/catch syntax
    this.c8o.callJson(".login")
        .async()
        .then((response)=>{
        //handle result
        });

    // Using C8oPromise that allow for example progress and Live. C8oPromise is described in Api doc in section Api documentation of this README
    this.c8o.callJson(".login")
        .then((response)=>{
        //handle result
        });
    

Returning jSON Just use the c8o.callJson method to request a JSON response.

    import { C8o, C8oSettings } from "c8osdkangular"
    // Assuming c8o is a C8o instance properly instanciated and initiated as describe above, and '.login' is the name of a sequence of your project

    // Here using Javascript's Promises with awaiter syntax 
    let result = await this.c8o.callJson('.login')
                        .async();

    // Here using Javascript's Promises with then/catch syntax
    this.c8o.callJson(".login")
        .async()
        .then((response)=>{
        //handle result
        });

    // Using C8oPromise that allow for example progress and Live. C8oPromise is described in Api doc in section Api documentation of this README
    this.c8o.callJson(".login")
        .then((response)=>{
        //handle result
        });
    
    import { C8o, C8oSettings } from "c8osdkjs"
    // Assuming c8o is a C8o instance properly instanciated and initiated as describe above, and '.login' is the name of a sequence of your project

    // Here using Javascript's Promises with awaiter syntax 
    let result = await this.c8o.callJson('.login')
                        .async();

    // Here using Javascript's Promises with then/catch syntax
    this.c8o.callJson(".login")
        .async()
        .then((response)=>{
        //handle result
        });

    // Using C8oPromise that allow for example progress and Live. C8oPromise is described in Api doc in section Api documentation of this README
    this.c8o.callJson(".login")
        .then((response)=>{
        //handle result
        });
    

Calls parameters

The call method expects the requester string of the following syntax:

For a transaction: [project].connector.transaction For a sequence: [project].sequence The project name is optional, i.e. if not specified, the project specified in the endpoint will be used.

Convertigo requestables generally needs key/value parameters. The key is always a string and the value can be any object but a string is the standard case.

Here a sample with JSON but this would be the same for XML calls:

    // Assuming c8o is a C8o instance properly instanciated and initiated as describe above, and '.login' is the name of a sequence of your project

    // Here using Javascript's Promises with awaiter syntax
    let result = await this.c8o.callJsonObject('.login', {
                            login: "barnett.christine",
                            password: "mySuperPassword123"
                            })
                            .async();

    // Here using Javascript's Promises with then/catch syntax
    this.c8o.callJsonObject('.login', {
        login: "barnett.christine",
        password: "mySuperPassword123"
    })
    .async()
    .then((response)=>{
        // handle result
    });

    // Using C8oPromise that allow for example progress and Live. C8oPromise is described in Api doc in section Api documentation of this README.
    this.c8o.callJsonObject(".login",{
        login: "barnett.christine",
        password: "mySuperPassword123"
        })
        .then((response)=>{
        //handle result
        });
    
    // Assuming c8o is a C8o instance properly instanciated and initiated as describe above, and '.login' is the name of a sequence of your project

    // Here using Javascript's Promises with awaiter syntax
    let result = await this.c8o.callJsonObject('.login', {
                            login: "barnett.christine",
                            password: "mySuperPassword123"
                            })
                            .async();

    // Here using Javascript's Promises with then/catch syntax
    this.c8o.callJsonObject('.login', {
        login: "barnett.christine",
        password: "mySuperPassword123"
    })
    .async()
    .then((response)=>{
        // handle result
    });

    // Using C8oPromise that allow for example progress and Live. C8oPromise is described in Api doc in section Api documentation of this README.
    this.c8o.callJsonObject(".login",{
        login: "barnett.christine",
        password: "mySuperPassword123"
        })
        .then((response)=>{
        //handle result
        });
    

Working with threads

Maybe you noticed that the calls methods doesn’t return the result directly and that all the sample code chains to the .sync() method.

This is because the calls methods return a C8oPromise instance. That allows the developer to choose if he wants to block the current thread, make an async request or get the response in a callback.

The .sync() method locks the current thread and return the result as soon as it’s avalaible. Of course this should not be used in an Android UI thread as this will result to a frozen UI untill data is returned by the server. In Android you should use the .sync() method only in worker threads.

However The .Net language offers the async/await mechanism that allows to wait and use the result without blocking the current thread.

Of course this does not apply to Angular as there is not threading for this framework.

As in many cases, locking the current thread is not recommended, the .then() method allows to register a callback that will be executed on a worker thread.

The .thenUI() method does the same but the callback will be executed on a UI thread. This is useful for quick UI widgets updates.

The .then() and .thenUI() callbacks receives as parameters the response and the request parameters.

Chaining calls

The .then() or .thenUI() returns a C8oPromise that can be use to chain other promise methods, such as .then() or .thenUI() or failure handlers. The last .then() or .thenUI() must return a null value. .then() or .thenUI() can be mixed but the returning type must be the same: Xml or Json.

    c8o.callJson(".getSimpleData", "callNumber", 1)
    .then((response) => {
        // you can do stuff here and return the next C8oPromise instead of deep nested blocks
        return c8o.callJson(".getSimpleData", "callNumber", 2);
    })
    .then((response)=>{
    // you can do stuff here and even modify previous parameters
    parameters["callNumber"] = 3;
    parameters["extraParameter"] = "ok";
    return c8o.callJsonObject(".getSimpleData", parameters);
    })
    .then((response)=>{
    // you can do stuff here and return null because this is the end of the chain
    return null;
    })
    
    c8o.callJson(".getSimpleData", "callNumber", 1)
    .then((response) => {
        // you can do stuff here and return the next C8oPromise instead of deep nested blocks
        return c8o.callJson(".getSimpleData", "callNumber", 2);
    })
    .then((response)=>{
    // you can do stuff here and even modify previous parameters
    parameters["callNumber"] = 3;
    parameters["extraParameter"] = "ok";
    return c8o.callJsonObject(".getSimpleData", parameters);
    })
    .then((response)=>{
    // you can do stuff here and return null because this is the end of the chain
    return null;
    })
    

Handling failures

A call can throw an error for many reasons: technical failure, network error and so on.

The standard try/catch should be used to handle this.

This is the case for the .sync() and .async() methods: if an exception occurs during the request execution, the original exception is thrown by the method and can be encapsulated in a C8oException.

    // Assuming c8o is a C8o instance properly instanciated and initiated as describe above, and '.login' is the name of a sequence of your project

    // Here using Javascript's Promises with awaiter
    try{
    let result = await this.c8o.callJsonObject('.login', {
                    login: "barnett.christine",
                    password: "mySuperPassword123"
                }).async();
    }
    catch(error){
    // Do something with the error
    }
    
    // Assuming c8o is a C8o instance properly instanciated and initiated as describe above, and '.login' is the name of a sequence of your project

    // Here using Javascript's Promises with awaiter
    try{
    let result = await this.c8o.callJsonObject('.login', {
                    login: "barnett.christine",
                    password: "mySuperPassword123"
                }).async();
    }
    catch(error){
    // Do something with the error
    }
    

When you use the .then() or the .thenUI() methods, the try/catch mechanism can’t catch a “future” exception or throwable: you have to use the .fail() or .failUI() methods at the end on the promise chain.

One fail handler per promise chain is allowed. The fail callback provide the object thrown (like an Exception) and the parameters of the failed request.

    // Here using Javascript's Promises
    this.c8o.callJsonObject('.login', {
                    login: "barnett.christine",
                    password: "mySuperPassword123"
                }).
                .async()
                .then((response)=>{
                //handle result
                })
                .catch((error)=>{
                // Do something with the error
                })

    // Using C8oPromise that allow for example progress and Live. C8oPromise is described in Api doc in section Api documentation of this README.
    this.c8o.callJsonObject('.login', {
                    login: "barnett.christine",
                    password: "mySuperPassword123"
                }).
                .then((response)=>{
                //handle result
                })
                .fail((error)=>{
                // Do something with the error
                })
    
    // Here using Javascript's Promises
    this.c8o.callJsonObject('.login', {
                    login: "barnett.christine",
                    password: "mySuperPassword123"
                }).
                .async()
                .then((response)=>{
                //handle result
                })
                .catch((error)=>{
                // Do something with the error
                })

    // Using C8oPromise that allow for example progress and Live. C8oPromise is described in Api doc in section Api documentation of this README.
    this.c8o.callJsonObject('.login', {
                    login: "barnett.christine",
                    password: "mySuperPassword123"
                }).
                .then((response)=>{
                //handle result
                })
                .fail((error)=>{
                // Do something with the error
                })
    

Writing the device logs to the Convertigo server

An application developer usually adds log information in his code. This is useful for the code execution tracking, statistics or debugging.

The Convertigo Client SDK offers an API to easily log on the standard device logger, generally in a dedicated console. To see this console, a device must be physically connected on a computer.

Fortunately, the same API also send log to the Convertigo server and they are merged with the server log. You can easily debug your device and server code on the same screen, on the same timeline. Logs from a device contain metadata, such as the device UUID and can help to filter logs on the server.

A log level must be specified:

  • Fatal: used for critical error message
  • Error: used for common error message
  • Warn: used for not expected case
  • Info: used for high level messages
  • Debug: used for help the developer to understand the execution
  • Trace: used for help the developer to trace the code To write a log string, use the C8oLogger instance of a C8o instance:
    try {
        c8o.log.info("hello world!"); // the message can be a simple string
    } catch (error) {
        c8o.log.error("bye world...", error); // the message can also take an error argument
    }
    if (c8o.log.isDebug) { // check if currents log levels are enough
        // enter here only if a log level is 'trace' or 'debug', can prevent unnecessary CPU usage
        let msg : string = serializeData(); // compute a special string, like a Document serialization
        c8o.log.debug(msg);
    }
    
    try {
        c8o.log.info("hello world!"); // the message can be a simple string
    } catch (error) {
        c8o.log.error("bye world...", error); // the message can also take an error argument
    }
    if (c8o.log.isDebug) { // check if currents log levels are enough
        // enter here only if a log level is 'trace' or 'debug', can prevent unnecessary CPU usage
        let msg : string = serializeData(); // compute a special string, like a Document serialization
        c8o.log.debug(msg);
    }
    

A C8oLogger have 2 log levels, one for local logging and the other for the remote logging. With the Android SDK, the local logging is set by the logcat options. With the .Net SDK, the local logging depends of the LogLevelLocal setting of C8oSettings.

The remote logging level is enslaved by Convertigo server Log levels property: devices output logger. In case of failure, the remote logging is disabled and cannot be re-enabled for the current C8o instance. It can also be disabled using the LogRemote setting of C8oSettings, enabled with true (default) and disabled with false.

To monitor remote logging failure, a LogOnFail handler can be registered with the C8oSetting.

The Convertigo Client SDK itself writes logs. They can be turned off using the LogC8o setting of C8oSettings, enabled with true (default) and disabled with false.

    C8oSettings()
        .setLogC8o(false)   // disable log from the Convertigo Client SDK itself
        .setLogRemote(false) // disable remote logging
        .setLogLevelLocal(C8oLogLevel.TRACE);
    
    C8oSettings()
        .setLogC8o(false)   // disable log from the Convertigo Client SDK itself
        .setLogRemote(false) // disable remote logging
        .setLogLevelLocal(C8oLogLevel.TRACE);
    

Using the Local Cache

Sometimes we would like to use local cache on C8o calls and responses, in order to:

  • save network traffic between the device and the server,
  • be able to display data when the device is not connected to the network. The Local Cache feature allows to store locally on the device the responses to a C8o call, using the variables and their values as cache key.

To use the Local Cache, add to a call a pair parameter of C8oLocalCache.PARAM and a C8oLocalCache instance. The constructor of C8oLocalCache needs some parameters:

  • C8oLocalCache.Priority (SERVER / LOCAL): defines whether the response should be retrieved from local cache or from Convertigo server when the device can access the network. When the device has no network access, the local cache response is used.
  • ttl: defines the time to live of the cached response, in milliseconds. If no value is passed, the time to live is infinite.
  • enabled: allows to enable or disable the local cache on a Convertigo requestable, default value is true.
    // return the response if is already know and less than 180 sec else call the server

    c8o.callJson(".getSimpleData",
            C8oLocalCache.PARAM, new C8oLocalCache(Priority.LOCAL, 180 * 1000)
        )
        .then((response: any, _) => {
            // do stuff
        });

    // same sample but with parameters, also acting as cache keys

    c8o.callJson(".getSimpleData",
            "firstname", "John",
            "lastname", "Doe",
            C8oLocalCache.PARAM, new C8oLocalCache(Priority.LOCAL, 180 * 1000)
        )
        .then((response: any, _) => {
            // do stuff
        });

    // make a standard network call with the server
    // but in case of offline move or network failure
    // return the response if is already know and less than 1 hour
    c8o.callJson(".getSimpleData",
            C8oLocalCache.PARAM, new C8oLocalCache(Priority.SERVER, 3600 * 1000)
        )
        .then((response: any, _) => {
            // do stuff
        });
    
    // Return the response if is already know and less than 180 seconds else call the server
    this.c8o.callJsonObject(".getSimpleData",
                {
                "__localCache": new C8oLocalCache(Priority.LOCAL, 180 * 1000)
                })
                .then((response)=>{
                // Do stuff 
                });

    // same sample but with parameters, also acting as cache keys
    this.c8o.callJsonObject(".getSimpleData",
                {
                "firstname": "John",
                    "lastname": "Doe",
                "__localCache": new C8oLocalCache(Priority.LOCAL, 180 * 1000)
                })
                .then((response)=>{
                // Do stuff 
                });
    // make a standard network call with the server
    // but in case of offline move or network failure
    // return the response if is already know and less than 1 hour
    this.c8o.callJsonObject(".getSimpleData",
                {
                "__localCache": new C8oLocalCache(Priority.SERVER, 3600 * 1000)
                })
                .then((response)=>{
                // Do stuff 
                });
    

Using the Full Sync

Full Sync enables mobile apps to handle fully disconnected scenarios, still having data handled and controlled by back end business logic. See the presentation of the Full Sync architecture for more details.

Convertigo Client SDK provides a high level access to local data following the standard Convertigo Sequence paradigm. They differ from standard sequences by a fs:// prefix. Calling these local Full Sync requestable will enable the app to read, write, query and delete data from the local database:

  • fs://< database>.create creates the local database if not already exist
  • fs://< database>.view queries a view from the local database
  • fs://< database>.get reads an object from the local database
  • fs://< database>.post writes/update an object to the local database
  • fs://< database>.delete deletes an object from the local database
  • fs://< database>.all gets all objects from the local database
  • fs://< database>.sync synchronizes with server database
  • fs://< database>.replicate_push pushes local modifications on the database server
  • fs://< database>.replicate_pull gets all database server modifications
  • fs://< database>.reset resets a database by removing all the data in it Where fs://< database> is the name of a specific FullSync Connector in the project specified in the endpoint. The fs://< database> name is optional only if the default database name is specified with the method setDefaultDatabaseName on the C8oSetting.

An application can have many databases. On mobile (Android, iOS and Xamarin based) they are stored in the secure storage of the application. On Windows desktop application, they are stored in the user AppData/Local folder, without application isolation.

All platforms can specify a local database prefix that allows many local database copies of the same remote database. Use the method setFullSyncLocalSuffix on the C8oSetting.

    // clear or create the "base" database
    c8o.callJson("fs://base.reset")
        .then((response: any, parameters:Object) => {
            // response content:
            // { "ok": true }
            return c8o.callJson("fs://base.post", // creates a new document on "base", with 2 key/value pairs
                "firstname", "John",
                "lastname", "Doe"
            );
        })
        .then((response: any, parameters:Object) => {
                // response content:
                // {
                //   "ok": true,
                //   "id": "6f1b52df",
                //   "rev": "1-b0620371"
                // }
                return c8o.callJson("fs://base.get", "docid", response["id"])); // retrieves the complet document from its "docid"
        })
        .then((response: any, parameters:Object) => {
                // response content:
                // {
                //   "lastname": "Doe",
                //   "rev": "1-b0620371",
                //   "firstname": "John",
                //   "_id": "6f1b52df"
                // }
                c8o.log.info(json.stringify(response)); // output the document in the log
            return null;
        });
    
    // clear or create the "base" database
    c8o.callJson("fs://base.reset")
        .then((response: any, parameters:Object) => {
            // response content:
            // { "ok": true }
            return c8o.callJson("fs://base.post", // creates a new document on "base", with 2 key/value pairs
                "firstname", "John",
                "lastname", "Doe"
            );
        })
        .then((response: any, parameters:Object) => {
                // response content:
                // {
                //   "ok": true,
                //   "id": "6f1b52df",
                //   "rev": "1-b0620371"
                // }
                return c8o.callJson("fs://base.get", "docid", response["id"])); // retrieves the complet document from its "docid"
        })
        .then((response: any, parameters:Object) => {
                // response content:
                // {
                //   "lastname": "Doe",
                //   "rev": "1-b0620371",
                //   "firstname": "John",
                //   "_id": "6f1b52df"
                // }
                c8o.log.info(json.stringify(response)); // output the document in the log
            return null;
        });
    

Replicating Full Sync databases

Full Sync has the ability to replicate mobile and Convertigo server databases over unreliable connections still preserving integrity. Data can be replicated in upload or download or both directions. The replication can also be continuous: a new document is instantaneously replicated to the other side.

The client SDK offers the progress and progressUI handlers to monitor the replication progression thanks to a C8oProgress instance. The then and thenUI handlers are triggered once the initiation replication is done. When triggered, this means that all documents are synced at this time but future documents can still be replicated in case of continuous replication.

    // Assuming c8o is a C8o instance properly instanciated and initiated as describe above.

    this.c8o.callJson('.login')
    .then((response)=>{
        if(response == "ok"){
        // The progress can be handled only with C8oPromise,
        // replication_pull can also be sync or replication_push
        this.c8o.callJson('fs://base.replication_pull')
            .then((response)=>{
            // Do stuff with response
            })
            .progress((progress)=>{
            // Do stuff with progress
            });
        }
    });
    
    // Assuming c8o is a C8o instance properly instanciated and initiated as describe above.

    this.c8o.callJson('.login')
    .then((response)=>{
        if(response == "ok"){
        // The progress can be handled only with C8oPromise,
        // replication_pull can also be sync or replication_push
        this.c8o.callJson('fs://base.replication_pull')
            .then((response)=>{
            // Do stuff with response
            })
            .progress((progress)=>{
            // Do stuff with progress
            });
        }
    });
    

A device cannot pull private documents or push any document without authentication. A session must be established before and the Convertigo server must authenticate the session (using the Set authenticated user step for example).

    // Assuming c8o is a C8o instance properly instanciated and initiated as describe above.

    // The progress can be handled only with C8oPromise
    this.c8o.callJsonObject('fs://base.replication_pull', {"continuous": true})
        .then((response)=>{
        // Do stuff with response
        })
        .progress((progress)=>{
        // Do stuff with progress
        })

    // this will cancel the previous replication
    this.c8o.callJsonObject('fs://base.replication_pull', {"cancel": true})
        .then((response)=>{
        // Do stuff with response
        })
    
    // Assuming c8o is a C8o instance properly instanciated and initiated as describe above.

    // The progress can be handled only with C8oPromise
    this.c8o.callJsonObject('fs://base.replication_pull', {"continuous": true})
        .then((response)=>{
        // Do stuff with response
        })
        .progress((progress)=>{
        // Do stuff with progress
        })

    // this will cancel the previous replication
    this.c8o.callJsonObject('fs://base.replication_pull', {"cancel": true})
        .then((response)=>{
        // Do stuff with response
        })
    

Full Sync FS_LIVE request

Full Sync has the ability to re-execute your fs:// calls if the database is modified. The then or thenUI following a FS_LIVE parameter is re-executed after each database update. Database update can be local modification or remote modification replicated.

This allow you keep your UI synchronized with database documents.

A FS_LIVE parameter must have a string value, its liveid. The liveid allow to cancel a FS_LIVE request.

    c8o.callJson("fs://.view",
        "ddoc", "design",
        "view", "customers",
        C8O.FS_LIVE, "customers")
        .then((response: any, _) => {  // launches a live view
            // will be call now and after each database update
            updateCustomersUI(json);
            return null;
        });
    
    // cancel the previous FS_LIVE request, can be on application page change for example
    c8o.cancelLive("customers");
    
    c8o.callJson("fs://.view",
        "ddoc", "design",
        "view", "customers",
        C8O.FS_LIVE, "customers")
        .then((response: any, _) => {  // launches a live view
            // will be call now and after each database update
            updateCustomersUI(json);
            return null;
        });
    
    // cancel the previous FS_LIVE request, can be on application page change for example
    c8o.cancelLive("customers");
    

Full Sync change listener

Sometimes, it’s nice to know what is changed in the database. The Full Sync change listener allow you to monitor what is changed through a JSON object with all details inside.

    let changeListener : C8oFullSyncChangeListener = new C8oFullSyncChangeListener((changes:Object)=>{
        checkChanges(changes);
    });
    
    c8o.addFullSyncChangeListener("base", changeListener); // add this listener for the database "base" ; null or "" while use the default database.
    
    c8o.removeFullSyncChangeListener("base", changeListener); // remove this listener for the database "base" ; null or "" while use the default database.
    
    let changeListener : C8oFullSyncChangeListener = new C8oFullSyncChangeListener((changes:Object)=>{
        checkChanges(changes);
    });
    
    c8o.addFullSyncChangeListener("base", changeListener); // add this listener for the database "base" ; null or "" while use the default database.
    
    c8o.removeFullSyncChangeListener("base", changeListener); // remove this listener for the database "base" ; null or "" while use the default database.
    

API reference

Angular