Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 6.71 KB

controlchanneltrigger.md

File metadata and controls

47 lines (31 loc) · 6.71 KB
-api-id -api-type
T:Windows.Networking.Sockets.ControlChannelTrigger
winrt class

Windows.Networking.Sockets.ControlChannelTrigger

-description

Enables real time notifications to be received in the background for objects that establish a TCP connection and wish to be notified of incoming traffic.

Call BackgroundExecutionManager.RequestAccessAsync before using ControlChannelTrigger.

Note

This class is not supported on Windows Phone.

-remarks

The ControlChannelTrigger class and related interfaces are used to enable your app to use the network when your app is not the foreground app. A Universal Windows app is normally suspended when it is no longer in the foreground app and moved to the background. There are some exceptions to suspending an app (actively printing, accessing an audio stream, and transferring files in the background, for example). The ControlChannelTrigger class allows a network app that has established a TCP connection to notify the system that an established network connection should be kept operational and the system should wake up the suspended app when network data is received for the app or the server keep-alive timer interval expires. Use control channel triggers when your app needs to maintain a network connection even if it is in the background.

While the ControlChannelTrigger class can be used with DatagramSocket, StreamSocket, or StreamSocketListener, Windows 10 provides an improved mechanism for apps that use those classes and want to maintain connections while in the background. See Network communications in the background for details about SocketActivityTrigger and the socket broker.

The ControlChannelTrigger class is recommended to be used by instances of the following that establish a TCP connection:

There are several types of keep-alive intervals that may relate to network apps. At the lowest level, an app can set a TCP keep-alive option to send TCP keep-alive packets between a client app and a server to maintain an established TCP connection that is not being used. The HttpClient class and the XMLHttpRequest JavaScript object do not have an option to enable TCP keep-alive and this option is disabled by default. The TCP keep-alive must be disabled in order to use the ControlChannelTrigger class to support background network notifications.

In the context of the ControlChannelTrigger class, there are two other keep-alive intervals that have an impact.

  • Server keep-alive interval - This refers to a keep-alive interval in minutes that the app registers with the system for how often to be woken up when the app has been suspended. The system will wake up the app based on the value set for this keep-alive interval. This value is represented by the ServerKeepAliveIntervalInMinutes property on a ControlChannelTrigger class and is set as an argument to the ControlChannelTrigger constructor. This value is considered a server keep-alive interval since a network app might normally set this based on known behavior of the server to which the app has established a TCP connection. For example, if it is known that a web server will disconnect and drop TCP connections if there is no data sent by the app for 30 minutes, the network app could set this server keep-alive interval to 25 minutes.
  • Network keep-alive interval - This refers to an internal keep-alive timer maintained by low-level network components in the TCP stack based on current network conditions. This value represents the value needed by network intermediaries to keep the TCP connection intact. These network intermediaries represent hardware and devices such as network proxies and network address translators. A network app cannot set this value, since this value is determined dynamically by low-level system components in the TCP stack. The internal calculation of the network keep-alive interval does take account of the server keep-alive interval. A network app can indicate to the system that the network keep-alive timer should be decreased if established TCP connections are regularly dropped by calling the DecreaseNetworkKeepAliveInterval method on a ControlChannelTrigger class.

Version history

Windows version SDK version Value added
1607 14393 IsWakeFromLowPowerSupported

-examples

-see-also

Networking basics, Network communications in the background, IXMLHTTPRequest2, IClosable, SocketActivityTrigger, System.Net.Http, System.Net.Http.HttpClient, System.Net.Http.HttpClientHandler, Windows.Web.Http, Windows.Web.Http.HttpClient, Background task sample