| Package | com.esri.bacore.client |
| Interface | public interface IBAResultProcessor |
| Implementors | CreateRecordSetByAddressesParameters, GeofenceInfoParameters, ProfileByAreaSummationParameters, ProfileByImportFromTableParameters, ProfileByTableGeocodingParameters, RenderAnalysesParameters, RepositoryItemParameters, SelectBusinessesParameters, TargetGroupParameters, ThresholdRingsRadiiParameters |
| Method | Defined By | ||
|---|---|---|---|
processResult(asyncToken:AsyncToken):void
Applies post-processing of a result received after executing a Community Analyst Task. | IBAResultProcessor | ||
| processResult | () | method |
public function processResult(asyncToken:AsyncToken):voidApplies post-processing of a result received after executing a Community Analyst Task.
The input instance of the result object is the value of
asyncToken.resultObject property. It is either an object decoded from JSON
or an object already processed by a result processor registered for the given result type.
This method should apply an additional processing of the result and update the
asyncToken.resultObject property.
To get the result object from async token properties or to set the updated object
to async token properties, use the GPResultProcessors.getProcessedResult
and GPResultProcessors.setProcessedResult methods, respectively.
Parameters
asyncToken:AsyncToken — Asynch token associated with the response.
|