Package com._1c.g5.v8.bm.integration
Interface IBmTaskCompletedProcessor
-
public interface IBmTaskCompletedProcessor
Interface for components that need notification upon successful task execution.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
afterSyncEventListenerProcessed(BmEvent event)
The method invoked after a task executed and all the registered synchronous event listeners are notified.void
setModel(IBmModel model)
Sets model.
-
-
-
Method Detail
-
setModel
void setModel(IBmModel model)
Sets model.- Parameters:
model
- The model to set. May not benull
.
-
afterSyncEventListenerProcessed
void afterSyncEventListenerProcessed(BmEvent event)
The method invoked after a task executed and all the registered synchronous event listeners are notified.- Parameters:
event
- The event representing modifications performed within the task. May not benull
.
-
-