Package conduit :: Package modules :: Module TestModule :: Class TestConversionArgs
[hide private]

Class TestConversionArgs

source code


Instance Methods [hide private]
 
__init__(self, *args) source code
 
put(self, data, overwrite, LUID=None)
Stores data.
source code

Inherited from _TestConversionBase: configure, get_UID, get_configuration, get_input_conversion_args

Inherited from dataproviders.DataProvider.DataSink: delete

Inherited from dataproviders.DataProvider.DataProviderBase: emit, emit_change_detected, finish, get_configuration_xml, get_input_type, get_name, get_output_conversion_args, get_output_type, get_status, initialize, is_busy, is_configured, refresh, set_configuration, set_configuration_xml, set_status, uninitialize

Class Variables [hide private]
  _name_ = "Test Conversion Args"
  _description_ = "Pass Arguments to TestConverter"
  _category_ = DataProviderCategory.DataProviderCategory("Test")
  _module_type_ = "sink"
  _in_type_ = "test_type"
  _out_type_ = "test_type"
  _icon_ = "emblem-system"

Inherited from _TestConversionBase: _configurable_

Inherited from dataproviders.DataProvider.DataProviderBase: __gsignals__

Method Details [hide private]

__init__(self, *args)
(Constructor)

source code 
Overrides: _TestConversionBase.__init__

put(self, data, overwrite, LUID=None)

source code 

Stores data. The derived class is responsible for checking if putData conflicts.

In the case of a two-way datasource, the derived type should consider the overwrite parameter, which if True, should allow the dp to replace a datatype instance if one is found at the existing location

Derived classes should call this function to ensure the dataprovider status is updated.
Overrides: dataproviders.DataProvider.DataSink.put
(inherited documentation)