Skip to content
Snippets Groups Projects

Deliver notification info

Merged Adham Hashibon requested to merge deliver-to-ui into master
4 files
+ 266
150
Compare changes
  • Side-by-side
  • Inline
Files
4
from traits.api import ABCHasStrictTraits, Instance, List, String, Event
from traits.api import ABCHasStrictTraits, Instance, List, Event
from force_bdss.core.input_slot_map import InputSlotMap
from force_bdss.local_traits import Identifier
from .i_data_source_factory import IDataSourceFactory
@@ -23,7 +24,10 @@ class BaseDataSourceModel(ABCHasStrictTraits):
#: Allows to assign names to the output slots, so that they can be
#: referenced somewhere else (e.g. the KPICalculators).
output_slot_names = List(String(), visible=False)
#: If the name is the empty string, it means that the user is not
#: interested in preserving the information, and should therefore be
#: discarded and not propagated further.
output_slot_names = List(Identifier(), visible=False)
#: This event claims that a change in the model influences the slots
#: (either input or output). It must be triggered every time a specific
Loading