Skip to main content
API Reference com.nianticspatial.nsdk.wps WPSSession

featureStatus

Reports errors that have occurred within processes running inside this feature. Check this periodically to see if any errors have occurred with processes running inside this feature. Once an error has been flagged, it will remain flagged until the culprit process has been run again and completed successfully. ### Example kotlin val status = wpsSession.featureStatus() if (!status.isOk()) { println("WPS has encountered an error") }

Declaration

fun featureStatus(): FeatureStatus

Summary

Reports errors that have occurred within processes running inside this feature. Check this periodically to see if any errors have occurred with processes running inside this feature. Once an error has been flagged, it will remain flagged until the culprit process has been run again and completed successfully. ### Example kotlin val status = wpsSession.featureStatus() if (!status.isOk()) { println("WPS has encountered an error") }

Returns

Feature status flags for any issues that have occurred


ON THIS PAGE