> ## Documentation Index
> Fetch the complete documentation index at: https://developer.sanas.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# DestroyProcessorResult

`DestroyProcessorResult` is returned by `RemoteSDK.DestroyAudioProcessor()` and indicates whether the audio processor was destroyed and its resources released successfully.

## Values

| Enum                          | Description                                        |
| ----------------------------- | -------------------------------------------------- |
| `SUCCESS`                     | Processor destroyed and resources released         |
| `SDK_NOT_INITIALIZED`         | SDK has not been initialized                       |
| `INVALID_PROCESSOR`           | The processor reference is invalid or unrecognized |
| `PROCESSOR_ALREADY_DESTROYED` | Processor was already destroyed                    |
| `FAILED`                      | General failure                                    |

## See Also

<CardGroup cols={2}>
  <Card title="RemoteSDK" icon="server" href="/API-Reference/Reference/Core-Classes/RemoteSDK">
    The `DestroyAudioProcessor()` method that returns this enum
  </Card>

  <Card title="AudioProcessor" icon="waveform-lines" href="/API-Reference/Reference/Core-Classes/AudioProcessor">
    The processor instance you pass to `DestroyAudioProcessor()`
  </Card>
</CardGroup>
