pip_services3_data.IGetter module¶
pip_services3_data.IGetter¶
Interface for data getters.
- copyright
- Conceptual Vision Consulting LLC 2018-2019, see AUTHORS for more details. 
- license
- MIT, see LICENSE for more details. 
- 
class pip_services3_data.IGetter.IGetter¶
- Bases: - pip_services3_commons.data.IIdentifiable.IIdentifiable- Interface for data processing components that can get data items. - 
get_one_by_id(correlation_id: Optional[str], id: Any) → T¶
- Gets a data items by its unique id. - Parameters
- correlation_id – (optional) transaction id to trace execution through call chain. 
- id – an id of item to be retrieved. 
 
- Returns
- an item by its id. 
 
 - 
id: Any¶
 
-