UrlRequest.Status.WaitingForStalledSocketPool Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Caution
This constant will be removed in the future version. Use Android.Net.Http.UrlRequestStatus enum directly instead of this field.
When a socket pool group is below the maximum number of sockets allowed per group, but a new socket cannot be created due to the per-pool socket limit, this state is returned by all requests for the group waiting on an idle connection, except those that may be serviced by a pending new connection.
[Android.Runtime.Register("WAITING_FOR_STALLED_SOCKET_POOL", ApiSince=34)]
[System.Obsolete("This constant will be removed in the future version. Use Android.Net.Http.UrlRequestStatus enum directly instead of this field.", true)]
public const Android.Net.Http.UrlRequestStatus WaitingForStalledSocketPool = 1;
[<Android.Runtime.Register("WAITING_FOR_STALLED_SOCKET_POOL", ApiSince=34)>]
[<System.Obsolete("This constant will be removed in the future version. Use Android.Net.Http.UrlRequestStatus enum directly instead of this field.", true)>]
val mutable WaitingForStalledSocketPool : Android.Net.Http.UrlRequestStatus
Field Value
Value = 1- Attributes
Remarks
When a socket pool group is below the maximum number of sockets allowed per group, but a new socket cannot be created due to the per-pool socket limit, this state is returned by all requests for the group waiting on an idle connection, except those that may be serviced by a pending new connection.
Java documentation for android.net.http.UrlRequest.Status.WAITING_FOR_STALLED_SOCKET_POOL
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.