Package com.brightcove.player.config
Class AllocatorConfig
- java.lang.Object
-
- com.brightcove.player.config.AllocatorConfig
-
public class AllocatorConfig extends java.lang.ObjectConfig class used when creating aAllocatorinstance.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAllocatorConfig.BuilderThe AllocatorConfig Builder.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetIndividualAllocationSize()Gets the length of each individualAllocation.intgetInitialAllocationCount()Gets the number of allocations to create up front.booleanisTrimOnReset()Whether memory is freed when the allocator is reset.
-
-
-
Method Detail
-
isTrimOnReset
public boolean isTrimOnReset()
Whether memory is freed when the allocator is reset. Should be true unless the allocator will be re-used by multiple player instances.- Returns:
- the boolean
- See Also:
DefaultAllocator
-
getIndividualAllocationSize
public int getIndividualAllocationSize()
Gets the length of each individualAllocation.- Returns:
- the individual allocation size
- See Also:
DefaultAllocator
-
getInitialAllocationCount
public int getInitialAllocationCount()
Gets the number of allocations to create up front.- Returns:
- the initial allocation count
- See Also:
DefaultAllocator
-
-