Class Needle::Lifecycle::Deferred
In: lib/needle/lifecycle/deferred.rb
Parent: Needle::Pipeline::Element

The instantiation pipeline element that implements deferred instantiation.

Methods

call  

Public Instance methods

Returns a new proxy instance that wraps the next element of the instantiation pipeline.

[Source]

    # File lib/needle/lifecycle/deferred.rb, line 31
31:       def call( *args )
32:         Proxy.new( succ, *args )
33:       end

[Validate]