public interface BatchByteArrayEntityManager extends EntityManager<BatchByteArrayEntity>
| Modifier and Type | Method and Description |
|---|---|
void |
deleteByteArrayById(String byteArrayEntityId)
Deletes the
BatchByteArrayEntity with the given id from the database. |
List<BatchByteArrayEntity> |
findAll()
Returns all
BatchByteArrayEntity. |
List<BatchByteArrayEntity> findAll()
BatchByteArrayEntity.void deleteByteArrayById(String byteArrayEntityId)
BatchByteArrayEntity with the given id from the database. Important: this operation will NOT do any optimistic locking, to avoid loading the bytes in memory. So use this method
only in conjunction with an entity that has optimistic locking!.Copyright © 2020 Flowable. All rights reserved.