playback 기능 추가

This commit is contained in:
logonkhi
2025-07-22 19:58:14 +09:00
parent cf97c6b61b
commit 4d29143d47
124 changed files with 15059 additions and 628 deletions

View File

@@ -49,7 +49,7 @@ namespace UVC.Data.Core
// maxPoolSize만큼의 DataObject 인스턴스를 미리 생성하여 풀에 추가합니다.
for (int i = 0; i < maxPoolSize; i++)
{
pool.Enqueue(new DataObject() { IsInPool = true });
pool.Enqueue(new DataObject() { IsInPool = true, CreatedFromPool = true });
}
}
@@ -90,7 +90,7 @@ namespace UVC.Data.Core
{
obj.IsInPool = false;
}
return fromPool ? obj : new DataObject();
return fromPool ? obj : new DataObject() { CreatedFromPool = true };
}
/// <summary>