cacophony
    Preparing search index...

    Interface AudioEventCallbacks

    Combined event callbacks for loading, error, and cache operations.

    interface AudioEventCallbacks {
        onCacheError?: (event: CacheErrorEvent) => void;
        onCacheHit?: (event: CacheHitEvent) => void;
        onCacheMiss?: (event: CacheMissEvent) => void;
        onLoadingComplete?: (event: LoadingCompleteEvent) => void;
        onLoadingError?: (event: LoadingErrorEvent) => void;
        onLoadingProgress?: (event: LoadingProgressEvent) => void;
        onLoadingStart?: (event: LoadingStartEvent) => void;
        onPlaybackError?: (event: PlaybackErrorEvent) => void;
        onSoundError?: (event: SoundErrorEvent) => void;
    }

    Hierarchy (View Summary)

    Index
    onCacheError?: (event: CacheErrorEvent) => void
    onCacheHit?: (event: CacheHitEvent) => void
    onCacheMiss?: (event: CacheMissEvent) => void
    onLoadingComplete?: (event: LoadingCompleteEvent) => void
    onLoadingError?: (event: LoadingErrorEvent) => void
    onLoadingProgress?: (event: LoadingProgressEvent) => void
    onLoadingStart?: (event: LoadingStartEvent) => void
    onPlaybackError?: (event: PlaybackErrorEvent) => void
    onSoundError?: (event: SoundErrorEvent) => void