Package apple.foundation.enums
Class NSURLSessionMultipathServiceType
- java.lang.Object
-
- apple.foundation.enums.NSURLSessionMultipathServiceType
-
public final class NSURLSessionMultipathServiceType extends java.lang.Object[@enum] NSURLSessionMultipathServiceType The NSURLSessionMultipathServiceType enum defines constants that can be used to specify the multipath service type to associate an NSURLSession. The multipath service type determines whether multipath TCP should be attempted and the conditions for creating and switching between subflows. Using these service types requires the appropriate entitlement. Any connection attempt will fail if the process does not have the required entitlement. A primary interface is a generally less expensive interface in terms of both cost and power (such as WiFi or ethernet). A secondary interface is more expensive (such as 3G or LTE). [@constant] NSURLSessionMultipathServiceTypeNone Specifies that multipath tcp should not be used. Connections will use a single flow. This is the default value. No entitlement is required to set this value. [@constant] NSURLSessionMultipathServiceTypeHandover Specifies that a secondary subflow should only be used when the primary subflow is not performing adequately. Requires the com.apple.developer.networking.multipath entilement. [@constant] NSURLSessionMultipathServiceTypeInteractive Specifies that a secodary subflow should be used if the primary subflow is not performing adequately (packet loss, high round trip times, bandwidth issues). The secondary subflow will be created more aggressively than with NSURLSessionMultipathServiceTypeHandover. Requires the com.apple.developer.networking.multipath entitlement. [@constant] NSURLSessionMultipathServiceTypeAggregate Specifies that multiple subflows across multiple interfaces should be used for better bandwidth. This mode is only available for experimentation on devices configured for development use. It can be enabled in the Developer section of the Settings app.
-
-
Field Summary
Fields Modifier and Type Field Description static longAggregateAggregate - multiple subflows used for greater bandwitdh.static longHandoverHandover - secondary flows brought up when primary flow is not performing adequately.static longInteractiveInteractive - secondary flows created more aggressively.static longNoneNone - no multipath (default)
-
-
-
Field Detail
-
None
public static final long None
None - no multipath (default)- See Also:
- Constant Field Values
-
Handover
public static final long Handover
Handover - secondary flows brought up when primary flow is not performing adequately.- See Also:
- Constant Field Values
-
Interactive
public static final long Interactive
Interactive - secondary flows created more aggressively.- See Also:
- Constant Field Values
-
Aggregate
public static final long Aggregate
Aggregate - multiple subflows used for greater bandwitdh.- See Also:
- Constant Field Values
-
-