Interface AudioEventCallbacks

Combined event callbacks for cache operations.

interface AudioEventCallbacks {
    onCacheError?: ((event) => void);
    onCacheHit?: ((event) => void);
    onCacheMiss?: ((event) => void);
    onLoadingComplete?: ((event) => void);
    onLoadingError?: ((event) => void);
    onLoadingProgress?: ((event) => void);
    onLoadingStart?: ((event) => void);
    onPlaybackError?: ((event) => void);
    onSoundError?: ((event) => void);
}

Hierarchy (view full)

Properties

onCacheError?: ((event) => void)

Type declaration

onCacheHit?: ((event) => void)

Type declaration

onCacheMiss?: ((event) => void)

Type declaration

onLoadingComplete?: ((event) => void)

Type declaration

onLoadingError?: ((event) => void)

Type declaration

onLoadingProgress?: ((event) => void)

Type declaration

onLoadingStart?: ((event) => void)

Type declaration

onPlaybackError?: ((event) => void)

Type declaration

onSoundError?: ((event) => void)

Type declaration