Skip to main content
API Reference SwiftyNsdk NsdkSemanticsSession

featureStatus

Gets the current status of the Semantics feature....

Declaration

func featureStatus() -> NsdkFeatureStatus

Summary

Gets the current status of the Semantics feature.
This method reports any errors or warnings that have occurred within the semantics system.
Check this periodically to monitor the health of semantic processing operations.
- Returns: Feature status flags indicating current state and any issues
## Example
swift <br />let status = semanticsSession.getFeatureStatus() <br />if status.contains(.failed) &#123; <br /> print("Semantics has encountered an error") <br />&#125; <br />


ON THIS PAGE