本文簡要介紹 python 語言中 arcgis.realtime.velocity.feeds.AzureServiceBus
的用法。
用法:
class arcgis.realtime.velocity.feeds.AzureServiceBus(label, description, topic_name, subscription_name, shared_access_key_name, shared_access_key, endpoint, data_format=None, track_id_field=None, geometry=None, time=None)
可選參數:
- data_format:
[
EsriJsonFormat
、GeoJsonFormat
、DelimitedFormat
、JsonFormat
、XMLFormat
]。包含此 feed 的數據格式配置的實例。僅配置允許的格式。如果在初始化期間未正確設置,則會自動檢測格式並根據傳入數據的樣本進行設置。該示例將從 init 中迄今為止提供的配置中獲取。 - track_id_field: String 。應設置為軌道 ID 的傳入數據的字段名稱。
- geometry:
[
XYZGeometry
,SingleFieldGeometry
]。幾何配置的實例,將用於從傳入數據創建幾何對象。 - time:
[
TimeInstant
,TimeInterval
]。時間配置實例,將用於根據傳入數據創建時間信息。
返回:
具有 azure 服務總線饋送配置的數據類。
從 Azure 服務總線接收事件。該數據類可用於定義提要配置並創建提要。
Parameter
Description
label
String 。此 Feed 實例的唯一標簽。
description
String 。飼料說明。
topic_name
String 。 Azure 服務總線的主題名稱。
subscription_name
String 。 Azure 服務總線的主題名稱。
shared_access_key_name
String 。 Azure 服務總線的共享訪問 key 名稱。
shared_access_key
String 。 Azure 服務總線的共享訪問 key 。
endpoint
String 。 Azure 服務總線的端點。
例子:
# Usage Example from arcgis.realtime.velocity.feeds import AzureServiceBus from arcgis.realtime.velocity.feeds.geometry import XYZGeometry, SingleFieldGeometry from arcgis.realtime.velocity.feeds.time import TimeInterval, TimeInstant azure_service_bus_config = AzureServiceBus( label="feed_name", description="feed_description", topic_name="azure_service_bus_topic_name", subscription_name="azure_service_bus_subscription_name", shared_access_key_name="azure_service_bus_shared_access_key_name", shared_access_key="azure_service_bus_shared_access_key", endpoint="azure_service_bus_endpoint", data_format=None ) # use velocity object to get the FeedsManager instance feeds = velocity.feeds # use the FeedsManager object to create a feed from this feed configuration azure_service_bus_feed = feeds.create(azure_service_bus_config) azure_service_bus_feed.start() feeds.items
- data_format:
[
相關用法
- Python ArcGIS AzureEventHub用法及代碼示例
- Python ArcGIS APIKeyManager.get用法及代碼示例
- Python ArcGIS APIKeyManager.create用法及代碼示例
- Python ArcGIS APIKey用法及代碼示例
- Python ArcGIS AssignmentType用法及代碼示例
- Python ArcGIS Assignment用法及代碼示例
- Python ArcGIS AWSIoT用法及代碼示例
- Python ArcGIS AssignmentTypeManager用法及代碼示例
- Python ArcGIS AssignmentIntegrationManager用法及代碼示例
- Python ArcGIS APIKeyManager.validate用法及代碼示例
- Python ArcGIS APIKey.update用法及代碼示例
- Python ArcGIS AssignmentManager用法及代碼示例
- Python ArcGIS power用法及代碼示例
- Python ArcGIS KnowledgeGraph.named_object_type_delete用法及代碼示例
- Python ArcGIS ContentManager.unshare_items用法及代碼示例
- Python ArcGIS ImageryLayer.thumbnail用法及代碼示例
- Python ArcGIS FormFieldElement用法及代碼示例
- Python ArcGIS Geometry.true_centroid用法及代碼示例
- Python ArcGIS Site.delete用法及代碼示例
- Python ArcGIS GeoAccessor.bbox用法及代碼示例
- Python arcgis.apps.hub.Initiative.update用法及代碼示例
- Python ArcGIS generate_service_areas用法及代碼示例
- Python ArcGIS build_overview用法及代碼示例
- Python ArcGIS RunInterval用法及代碼示例
- Python ArcGIS describe_dataset用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.realtime.velocity.feeds.AzureServiceBus。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。