HCE Project Python language Distributed Tasks Manager Application, Distributed Crawler Application and client API bindings.  2.0.0-chaika
Hierarchical Cluster Engine Python language binding
app.Utils.ConfigParamsList Class Reference
Inheritance diagram for app.Utils.ConfigParamsList:
Collaboration diagram for app.Utils.ConfigParamsList:

Public Member Functions

def __init__ (self, initial_data, kwargs)
 

Detailed Description

Definition at line 183 of file Utils.py.

Constructor & Destructor Documentation

◆ __init__()

def app.Utils.ConfigParamsList.__init__ (   self,
  initial_data,
  kwargs 
)

Definition at line 184 of file Utils.py.

184  def __init__(self, *initial_data, **kwargs):
185  for dictionary in initial_data:
186  for key in dictionary:
187  setattr(self, key, dictionary[key])
188  for key in kwargs:
189  setattr(self, key, kwargs[key])
190 
191 
192 # #The function to safe getting config parameters and return default value if cannot get value
193 #
194 # @param parser - instance of ConfigParser class
195 # @param section - section name of parameter
196 # @param option - option name of parameter
197 # @param defValue - default value
198 # @return - if success extracted value, otherwise return default value
199 #
def __init__(self)
constructor
Definition: UIDGenerator.py:19

The documentation for this class was generated from the following file: