kmp-toolkit
Toggle table of contents
common
Target filter
common
Switch theme
Search in API
Skip to content
kmp-toolkit
offline-outbox
/
com.siddharth.kmp.offlineoutbox
/
SubmitDraftDao
Submit
Draft
Dao
interface
SubmitDraftDao
Members
Functions
delete
By
Form
Key
Link copied to clipboard
abstract
suspend
fun
deleteByFormKey
(
formKey
:
String
)
observe
By
Form
Key
Link copied to clipboard
abstract
fun
observeByFormKey
(
formKey
:
String
)
:
Flow
<
List
<
SubmitDraftEntity
>
>
update
Status
Link copied to clipboard
abstract
suspend
fun
updateStatus
(
formKey
:
String
,
uniqueKey
:
String
,
status
:
String
,
now
:
Long
)
update
Status
With
Error
Link copied to clipboard
abstract
suspend
fun
updateStatusWithError
(
formKey
:
String
,
uniqueKey
:
String
,
status
:
String
,
error
:
String
,
now
:
Long
)
upsert
Link copied to clipboard
abstract
suspend
fun
upsert
(
entity
:
SubmitDraftEntity
)