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 Rogue Wave Software, Inc. 1997, 2018. All Rights Reserved.