本文整理汇总了Python中enarksh.DataLayer.DataLayer.enk_misc_insert_uri方法的典型用法代码示例。如果您正苦于以下问题:Python DataLayer.enk_misc_insert_uri方法的具体用法?Python DataLayer.enk_misc_insert_uri怎么用?Python DataLayer.enk_misc_insert_uri使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类enarksh.DataLayer.DataLayer
的用法示例。
在下文中一共展示了DataLayer.enk_misc_insert_uri方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: store
# 需要导入模块: from enarksh.DataLayer import DataLayer [as 别名]
# 或者: from enarksh.DataLayer.DataLayer import enk_misc_insert_uri [as 别名]
def store(self, nod_id):
"""
Stores the definition of this port into the database.
:param int nod_id: The ID of the node to which this node belongs
"""
uri_id = DataLayer.enk_misc_insert_uri(self.get_uri())
self._prt_id = DataLayer.enk_reader_port_store_input_port(nod_id,
uri_id,
self._port_name)
示例2: store
# 需要导入模块: from enarksh.DataLayer import DataLayer [as 别名]
# 或者: from enarksh.DataLayer.DataLayer import enk_misc_insert_uri [as 别名]
def store(self, hst_id, nod_id):
"""
:param int hst_id:
:param int nod_id:
"""
uri_id = DataLayer.enk_misc_insert_uri(self.get_uri())
self._rsc_id = DataLayer.enk_reader_resource_store_read_write_lock_resource(hst_id,
nod_id,
uri_id,
self._resource_name)
示例3: store
# 需要导入模块: from enarksh.DataLayer import DataLayer [as 别名]
# 或者: from enarksh.DataLayer.DataLayer import enk_misc_insert_uri [as 别名]
def store(self):
"""
Stores the definition of this host into the database.
"""
# Get uri_id for this host.
uri_id = DataLayer.enk_misc_insert_uri(self.get_uri())
# Store the definition of the host self.
self._store_self(uri_id)
# Store the resources of this host.
for resource in self._resources.values():
resource.store(self._hst_id, None)
示例4: store
# 需要导入模块: from enarksh.DataLayer import DataLayer [as 别名]
# 或者: from enarksh.DataLayer.DataLayer import enk_misc_insert_uri [as 别名]
def store(self, nod_id):
"""
Stores the definition of this consumption into the database.
:param int nod_id: The ID of the node to which this consumption belongs.
"""
resource = self._node.get_resource_by_name(self._resource_name)
rsc_id = resource.rsc_id
uri_id = DataLayer.enk_misc_insert_uri(self.get_uri())
self._cns_id = DataLayer.enk_reader_consumption_store_counting_consumption(nod_id,
rsc_id,
uri_id,
self._amount)