Registered StackHub users may elect to receive email notifications whenever a new package version is released or a comment is posted on the forum.
There are 0 watchers.
This axon function will create a job to sync meter reading from file to sqlite db. It internally calls initializePMSQLConnector() axon function to get the connector record ID.
So if connector this not created and this axon function is called then it will create a new sql connector as well.
Example:
initializePMFileToSqliteJob()
This axon function will create a sql connector to connect to sqlite db. The URI to the db will be /opt/skyspark/powermeter.db
. So please make sure that this sqlite db file is available before testing the connector.
If connector is already create it won't create one more connector but just return the record of existing connector. Example:
initializePMSQLConnector()
This axon function will create a job to sync data from sqlite db to folio db. It internally calls initializePMSQLConnector() axon function to get the connector record ID.
So if connector this not created and this axon function is called then it will create a new sql connector as well.
Example:
initializePMSqliteToFolioJob()