diff --git a/ts/Private/IAgoraMusicContentCenter.ts b/ts/Private/IAgoraMusicContentCenter.ts index fc7f580cc..7dad49144 100644 --- a/ts/Private/IAgoraMusicContentCenter.ts +++ b/ts/Private/IAgoraMusicContentCenter.ts @@ -377,19 +377,12 @@ export abstract class IMusicContentCenter { abstract preload(songCode: number, jsonOption?: string): number; /** - * 删除已缓存的音乐资源。 - * 你可以调用该方法删除某一已缓存的音乐资源,如需删除多个音乐资源,你可以多次调用该方法。 The cached media file currently being played will not be deleted. - * - * @param songCode 待删除的音乐资源的编号。 - * - * @returns - * 0: 方法调用成功,音乐资源已删除。< 0: Failure. + * @ignore */ abstract removeCache(songCode: number): number; /** - * 获取已缓存的音乐资源信息。 - * 当你不再需要使用已缓存的音乐资源时,你需要及时释放内存以防止内存泄漏。 + * @ignore */ abstract getCaches(): { cacheInfo: MusicCacheInfo[]; cacheInfoSize: number };