Package com._1c.g5.v8.derived.computer
Interface IDerivedDataRemover
-
- All Known Implementing Classes:
GraphicalSchemeDerivedDataRemover
public interface IDerivedDataRemover
Derived data remover interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getSupportedSegmentId()
Gets the DD segment supported by this instance of the computer.void
remove(IObjectDerivedDataContext context, IBmModel model, IBmTransaction transaction)
Processes the removal of the top object.
-
-
-
Method Detail
-
getSupportedSegmentId
String getSupportedSegmentId()
Gets the DD segment supported by this instance of the computer.- Returns:
- The identifier of the supported DD segment.
-
remove
void remove(IObjectDerivedDataContext context, IBmModel model, IBmTransaction transaction)
Processes the removal of the top object. The processing code must not change the main model. It should be used only to perform clearing of caches, external indexes, etc- Parameters:
context
- Context to process removal for, cannot benull
model
- The BM model reference, cannot benull
transaction
- The read-only transaction, cannot benull
-
-