Class: Mongoid::Relations::Proxy
- Includes:
- Threaded::Lifecycle
- Defined in:
- lib/mongoid/relations/proxy.rb
Overview
This class is the superclass for all relation proxy objects, and contains common behaviour for all of them.
Instance Attribute Summary collapse
-
#base ⇒ Object
Returns the value of attribute base.
-
#loaded ⇒ Object
Returns the value of attribute loaded.
-
#metadata ⇒ Object
Returns the value of attribute metadata.
-
#target ⇒ Object
Returns the value of attribute target.
Instance Method Summary collapse
-
#init(base, target, metadata) {|_self| ... } ⇒ Object
Convenience for setting the target and the metadata properties since all proxies will need to do this.
-
#substitutable ⇒ Object
The default substitutable object for a relation proxy is the clone of the target.
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args, &block) ⇒ Object (protected)
Default behavior of method missing should be to delegate all calls to the target of the proxy. This can be overridden in special cases.
100 101 102 |
# File 'lib/mongoid/relations/proxy.rb', line 100 def method_missing(name, *args, &block) target.send(name, *args, &block) end |
Instance Attribute Details
#base ⇒ Object
Returns the value of attribute base.
16 17 18 |
# File 'lib/mongoid/relations/proxy.rb', line 16 def base @base end |
#loaded ⇒ Object
Returns the value of attribute loaded.
16 17 18 |
# File 'lib/mongoid/relations/proxy.rb', line 16 def loaded @loaded end |
#metadata ⇒ Object
Returns the value of attribute metadata.
16 17 18 |
# File 'lib/mongoid/relations/proxy.rb', line 16 def @metadata end |
#target ⇒ Object
Returns the value of attribute target.
16 17 18 |
# File 'lib/mongoid/relations/proxy.rb', line 16 def target @target end |
Instance Method Details
#init(base, target, metadata) {|_self| ... } ⇒ Object
Convenience for setting the target and the metadata properties since all proxies will need to do this.
33 34 35 36 37 |
# File 'lib/mongoid/relations/proxy.rb', line 33 def init(base, target, ) @base, @target, @metadata = base, target, yield(self) if block_given? extend .extension if .extension? end |
#substitutable ⇒ Object
The default substitutable object for a relation proxy is the clone of the target.
48 49 50 |
# File 'lib/mongoid/relations/proxy.rb', line 48 def substitutable target end |