當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。