Skip to content
Snippets Groups Projects

Introduced ExecutionLayer object to simplify notification handling

Merged Adham Hashibon requested to merge introduce-layer-object into master
8 files
+ 51
34
Compare changes
  • Side-by-side
  • Inline
Files
8
+ 10
0
from traits.api import HasStrictTraits, List
from force_bdss.data_sources.base_data_source_model import BaseDataSourceModel
class ExecutionLayer(HasStrictTraits):
"""Represents a single layer in the execution stack.
It contains a list of the data source models that must be executed.
"""
data_source_models = List(BaseDataSourceModel)
Loading