Interface MutableFormState
- All Superinterfaces:
FormState
- All Known Implementing Classes:
DbFormState
-
Method Summary
Modifier and TypeMethodDescriptionvoidDeletes a form from FORM_BY_ID_AND_VERSION column familyvoidDeletes a form from FORMS column familyvoidDeletes a form from FORM_VERSION column familyvoidPut the given form in FORM_BY_ID_AND_VERSION column familyvoidPut the given form in FORMS column familyvoidupdateLatestVersion(FormRecord record) Update the latest version of the form if it is newer.Methods inherited from interface io.camunda.zeebe.engine.state.immutable.FormState
clearCache, findFormByKey, findLatestFormById, getNextFormVersion
-
Method Details
-
storeFormInFormColumnFamily
Put the given form in FORMS column family- Parameters:
record- the record of the form
-
storeFormInFormByIdAndVersionColumnFamily
Put the given form in FORM_BY_ID_AND_VERSION column family- Parameters:
record- the record of the form
-
updateLatestVersion
Update the latest version of the form if it is newer.- Parameters:
record- the record of the form
-
deleteFormInFormsColumnFamily
Deletes a form from FORMS column family- Parameters:
record- the record of the form that is deleted
-
deleteFormInFormByIdAndVersionColumnFamily
Deletes a form from FORM_BY_ID_AND_VERSION column family- Parameters:
record- the record of the form that is deleted
-
deleteFormInFormVersionColumnFamily
Deletes a form from FORM_VERSION column family- Parameters:
record- the record of the form that is deleted
-