<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to optimize GeoEvent and the runtime sdk? in .NET Maps SDK Questions</title>
    <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-optimize-geoevent-and-the-runtime-sdk/m-p/116791#M1306</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am constructing a windows dashboard using the runtime sdk showing real-time values by leveraging the geoevent extension.&amp;nbsp;My current process of updating features is slow and expensive.&lt;/P&gt;&lt;P&gt;The geoevent extension is logging captured values to a featurelayer. From the desktop client, I am polling the featurelayer for updates. Based on a little research, it looks like there is a streaming capability via websockets but it looks like it is only support for the javascript API. A web browser is unfortunately not an option for my client.&lt;/P&gt;&lt;P&gt;Is there something that can be done between the type of layers saved and what the runtime engine can do?&lt;/P&gt;&lt;P&gt;I am debating writing a lot of custom&amp;nbsp;capability using SignalR in order to fix this issue&amp;nbsp;but&amp;nbsp;I would rather not&amp;nbsp;if I could help it.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/tag/iot/tg-p"&gt;#iot&lt;/A&gt;‌ &lt;A href="https://community.esri.com/t5/tag/geoevent extension/tg-p"&gt;#geoevent extension&lt;/A&gt;‌ &lt;A href="https://community.esri.com/t5/tag/.net runtime/tg-p"&gt;#.net runtime&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 29 Oct 2016 15:19:25 GMT</pubDate>
    <dc:creator>JeffreyCusato</dc:creator>
    <dc:date>2016-10-29T15:19:25Z</dc:date>
    <item>
      <title>How to optimize GeoEvent and the runtime sdk?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-optimize-geoevent-and-the-runtime-sdk/m-p/116791#M1306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am constructing a windows dashboard using the runtime sdk showing real-time values by leveraging the geoevent extension.&amp;nbsp;My current process of updating features is slow and expensive.&lt;/P&gt;&lt;P&gt;The geoevent extension is logging captured values to a featurelayer. From the desktop client, I am polling the featurelayer for updates. Based on a little research, it looks like there is a streaming capability via websockets but it looks like it is only support for the javascript API. A web browser is unfortunately not an option for my client.&lt;/P&gt;&lt;P&gt;Is there something that can be done between the type of layers saved and what the runtime engine can do?&lt;/P&gt;&lt;P&gt;I am debating writing a lot of custom&amp;nbsp;capability using SignalR in order to fix this issue&amp;nbsp;but&amp;nbsp;I would rather not&amp;nbsp;if I could help it.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/t5/tag/iot/tg-p"&gt;#iot&lt;/A&gt;‌ &lt;A href="https://community.esri.com/t5/tag/geoevent extension/tg-p"&gt;#geoevent extension&lt;/A&gt;‌ &lt;A href="https://community.esri.com/t5/tag/.net runtime/tg-p"&gt;#.net runtime&lt;/A&gt;‌&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Oct 2016 15:19:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-to-optimize-geoevent-and-the-runtime-sdk/m-p/116791#M1306</guid>
      <dc:creator>JeffreyCusato</dc:creator>
      <dc:date>2016-10-29T15:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to optimize GeoEvent and the runtime sdk?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-optimize-geoevent-and-the-runtime-sdk/m-p/116792#M1307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A proper 'StreamLayer' is on the roadmap for a future release of ArcGIS Runtime SDK for .NET. Until then the FeatureLayer or GraphicsOverlay are your best options in the range of layer types in the current API.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll&amp;nbsp;ask around to see if anyone has tried to implement something already using the public API.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Oct 2016 00:33:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-to-optimize-geoevent-and-the-runtime-sdk/m-p/116792#M1307</guid>
      <dc:creator>MichaelBranscomb</dc:creator>
      <dc:date>2016-10-31T00:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to optimize GeoEvent and the runtime sdk?</title>
      <link>https://community.esri.com/t5/net-maps-sdk-questions/how-to-optimize-geoevent-and-the-runtime-sdk/m-p/116793#M1308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mike. I haven't yet updated my dashboard to the Quartz API although I am running Quartz with Xamarin for mobile deployment. I figure i'll be on quartz by the time I finish up deployment and i'm trying to work through my best course of action on the desktop end.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Oct 2016 14:56:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/net-maps-sdk-questions/how-to-optimize-geoevent-and-the-runtime-sdk/m-p/116793#M1308</guid>
      <dc:creator>JeffreyCusato</dc:creator>
      <dc:date>2016-10-31T14:56:40Z</dc:date>
    </item>
  </channel>
</rss>

