Skip to content

cop_pool_manager_helper

Kamran Wali edited this page Dec 2, 2024 · 5 revisions

Class Name: COP_PoolHelper

Inherits: Resource

Description

cop_pool_manager_helper class stores and shares the reference to a base_pool.

Tutorial

Properties

Type Name Default Value
COP_Pool _manager

Methods

Return Type Name
void set_manager( COP_Pool manager )
COP_Pool get_manager()
bool has_manager()

Property Descriptions

COP_Pool _manager

This property stores the reference to the base_pool.

Note: Do NOT set/get this property directly. Use the set_manager() method to set the reference of the pool object manager and use the get_manager() method for getting the reference of the pool object manager.


Method Descriptions

void set_manager ( COP_Pool manager )

This method sets the _manager property. Basically this means that this method stores the reference of a base_pool.


COP_Pool get_manager ()

This method gets the _manager property. Basically this means that this method returns the stored reference of the base_pool.


bool has_manager ()

This method checks if the _manager property has been set or NOT. True means the _manager property has been set. False means the _manager property has NOT been set.


Clone this wiki locally