当前位置: 首页>>代码示例>>Python>>正文


Python DataLayer.enk_misc_insert_uri方法代码示例

本文整理汇总了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)
开发者ID:OlegKlimenko,项目名称:py-enarksh,代码行数:12,代码来源:InputPort.py

示例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)
开发者ID:OlegKlimenko,项目名称:py-enarksh,代码行数:13,代码来源:ReadWriteLockResource.py

示例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)
开发者ID:SetBased,项目名称:py-enarksh,代码行数:15,代码来源:Host.py

示例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)
开发者ID:OlegKlimenko,项目名称:py-enarksh,代码行数:16,代码来源:CountingConsumption.py


注:本文中的enarksh.DataLayer.DataLayer.enk_misc_insert_uri方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。