@Kurt.Larson,
In a module using store and Forward manager I need to use StorageKey but only a StorageId is found.
eforward/StorageKey.html
Javadoc of 8.3.0 mention StorageKey
https://files.inductiveautomation.com/sdk/javadoc/ignition83/8.3.0/com/inductiveautomation/ignition/gateway/stor
BasicHistoricalRecord bhr = new BasicHistoricalRecord("essai_audit", "logger-audit-byes");
bhr.addColumn("texte", new BasicQualifiedValue("test insert audit"));
StorageId storageid = new StorageId("test",null);
try {
context.getStoreAndForwardManager().storeData(storageid,bhr);
} catch (Exception e) {
throw new RuntimeException(e);
}
did I miss something in the pom or we need to add another dependancy for using the Store and Forward ?
<ignition-platform-version>8.3.0-SNAPSHOT</ignition-platform-version>
<ignition-sdk-version>${ignition-platform-version}</ignition-sdk-version>