You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whenever the receiver receives data from sender and successfully processes the data, they will record the lastRecordId received in a SQLite table p2p_received_history.
The table p2p_received_history will have the columns
- device_id (String)
- type (Enum)
- last_record_id (Bigint)
device_id will identify the device the data was received from
type will identify the type of data that was received e.g Clients,Events,Tasks,Locations,Structures,etc
last_record_id will identify the last record received from the device and of type
This table cannot be synced from server and must be created only during P2P Sync
The text was updated successfully, but these errors were encountered:
Whenever the receiver receives data from sender and successfully processes the data, they will record the lastRecordId received in a SQLite table
p2p_received_history
.The table
p2p_received_history
will have the columns- device_id (String)
- type (Enum)
- last_record_id (Bigint)
device_id
will identify the device the data was received fromtype
will identify the type of data that was received e.g Clients,Events,Tasks,Locations,Structures,etclast_record_id
will identify the last record received from the device and of typeThis table cannot be synced from server and must be created only during P2P Sync
The text was updated successfully, but these errors were encountered: