acquire method

T acquire()

Increments reference count and returns the source.

Returns: The source resource

Implementation

T acquire() {
  _refCount++;
  return source;
}