public interface IlvBatchable
endBatch()
.
Batches can be nested. Changes in nested batches are applied only after the most enclosing batch is terminated:
batchable.startBatch(); batchable.startBatch(); batchable.modify(...); batchable.endBatch(); // No changes are applied yet batchable.endBatch(); // Changes are applied after this call
Modifier and Type | Method and Description |
---|---|
void |
endBatch()
Terminates a batch of modifications.
|
void |
startBatch()
Starts a batch of modifications.
|
void startBatch()
endBatch()
call.void endBatch()
startBatch()
call should now be applied.
In the case of nested batches modifications are applied only after the most enclosing batch is terminated.
© Copyright 2024 Rogue Wave Software, Inc., a Perforce company.. All Rights Reserved.