1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Kernel: Refine lazy sweep resource.

This commit is contained in:
winlin 2022-10-04 20:47:49 +08:00
parent eb04f92176
commit d4ce877407
4 changed files with 22 additions and 22 deletions

View file

@ -38,17 +38,17 @@ ISrsConnection::~ISrsConnection()
{
}
ISrsLazyResource::ISrsLazyResource()
SrsLazyObject::SrsLazyObject()
{
gc_ref_ = 0;
gc_creator_wrapper_ = NULL;
}
ISrsLazyResource::~ISrsLazyResource()
SrsLazyObject::~SrsLazyObject()
{
}
ISrsLazyResource* ISrsLazyResource::gc_use(ISrsResource* wrapper)
SrsLazyObject* SrsLazyObject::gc_use(ISrsResource* wrapper)
{
srs_assert(wrapper);
if (std::find(gc_wrappers_.begin(), gc_wrappers_.end(), wrapper) == gc_wrappers_.end()) {
@ -59,7 +59,7 @@ ISrsLazyResource* ISrsLazyResource::gc_use(ISrsResource* wrapper)
return this;
}
ISrsLazyResource* ISrsLazyResource::gc_dispose(ISrsResource* wrapper)
SrsLazyObject* SrsLazyObject::gc_dispose(ISrsResource* wrapper)
{
srs_assert(wrapper);
vector<ISrsResource*>::iterator it = std::find(gc_wrappers_.begin(), gc_wrappers_.end(), wrapper);
@ -71,22 +71,22 @@ ISrsLazyResource* ISrsLazyResource::gc_dispose(ISrsResource* wrapper)
return this;
}
int32_t ISrsLazyResource::gc_ref()
int32_t SrsLazyObject::gc_ref()
{
return gc_ref_;
}
void ISrsLazyResource::gc_set_creator_wrapper(ISrsResource* wrapper)
void SrsLazyObject::gc_set_creator_wrapper(ISrsResource* wrapper)
{
gc_creator_wrapper_ = wrapper;
}
ISrsResource* ISrsLazyResource::gc_creator_wrapper()
ISrsResource* SrsLazyObject::gc_creator_wrapper()
{
return gc_creator_wrapper_;
}
ISrsResource* ISrsLazyResource::gc_available_wrapper()
ISrsResource* SrsLazyObject::gc_available_wrapper()
{
return gc_wrappers_.empty() ? NULL : gc_wrappers_.front();
}