ArcGIS Runtime SDK for iOS: AGSGeoprocessingFeatures.h Source File
ArcGIS Runtime SDK for iOS  100.9
AGSGeoprocessingFeatures.h
Go to the documentation of this file.
1 /*
2  COPYRIGHT 1995-2020 ESRI
3 
4  TRADE SECRETS: ESRI PROPRIETARY AND CONFIDENTIAL
5  Unpublished material - all rights reserved under the
6  Copyright Laws of the United States and applicable international
7  laws, treaties, and conventions.
8 
9  For additional information, contact:
10  Environmental Systems Research Institute, Inc.
11  Attn: Contracts and Legal Services Department
12  380 New York Street
13  Redlands, California, 92373
14  USA
15 
16  email: contracts@esri.com
17  */
18 
19 #import <ArcGIS/AGSGeoprocessingParameter.h>
20 
21 @protocol AGSCancelable, AGSFeatureSet;
22  //Required for Globals API doc
24 
32 
33 
34 #pragma mark -
35 #pragma mark initializers
36 
37 +(instancetype)geoprocessingFeatures;
38 
39 
44 -(instancetype)initWithURL:(NSURL*)URL;
45 
50 +(instancetype)geoprocessingFeaturesWithURL:(NSURL*)URL;
51 
56 -(instancetype)initWithFeatureSet:(id<AGSFeatureSet>)featureSet;
57 
62 +(instancetype)geoprocessingFeaturesWithFeatureSet:(id<AGSFeatureSet>)featureSet;
63 
64 #pragma mark -
65 #pragma mark properties
66 
71 @property (nullable, nonatomic, strong, readwrite) NSURL *URL;
72 
76 @property (nonatomic, assign, readonly) BOOL canFetchOutputFeatures;
77 
81 @property (nullable, nonatomic, strong, readwrite) id<AGSFeatureSet> features;
82 
83 #pragma mark -
84 #pragma mark methods
85 
90 -(id<AGSCancelable>)fetchOutputFeaturesWithCompletion:(void(^)(id<AGSFeatureSet> __nullable features, NSError * __nullable error))completion;
91 
92 
93 @end
BOOL canFetchOutputFeatures
Definition: AGSGeoprocessingFeatures.h:76
A geoprocessing parameter for feature data.
Definition: AGSGeoprocessingFeatures.h:31
NSURL * URL
Definition: AGSElevationServiceInfo.h:67
An abstract representation of a set of features.
Definition: AGSFeatureSet.h:35
instancetype geoprocessingFeatures()
id< AGSFeatureSet > features
Definition: AGSGeoprocessingFeatures.h:81
A protocol exposed by operations that allow cancellation.
Definition: AGSCancelable.h:32
A base class for geoprocessing parameters.
Definition: AGSGeoprocessingParameter.h:30