cancel
Showing results for 
Search instead for 
Did you mean: 

Options for the depricated Smart Sync APIs

Former Member
0 Kudos

Hi All,

I am currently working with Smart Sync application. I need to know the other option that should replace some of the depricated Smart Sync APIs.

e.g. SyncBoInDeltaObserver is depricated. Instead of this interface we should use SyncReplyObserver.

Similarly can anybody tell me for the following classes / interfaces / methods is there any option available?

1) SyncBoOutDeltaObserver

2) SyncBoOutDelta

3) SyncBoInDelta

4) Row.createUnlinkedCopy()

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Saptak,

The alternative depends on what exactly you are using it for. If you can specify you scenario I could suggest an alternative.

for 3) SyncBoInDelta and SyncBoInDeltaObserver you can use SyncReply and the SyncReplyObserver.

for 4)Row.createUnlinkedCopy()

you can use Row.modifyFieldValue(FieldDescriptor, Object)

to modify the fields that have changed and to save the syncBo finally you can use SyncBo.modifyRow(Row).

Hope this helps,

Karthik

Answers (0)