| This class represents the default allocator context. Allocations are
performed using the new keyword and explicit object
ObjectFactory.recycle(Object) recycling is supported:[code]
char[] buffer = ArrayFactory.CHARS_FACTORY.array(4098); // Possibly recycled.
while (reader.read(buffer) > 0) { ... }
ArrayFactory.CHARS_FACTORY.recycle(buffer); // Explicit recycling.
[/code]
author: Jean-Marie Dautelle version: 5.2, August 19, 2007 |