Class: BSON::DBRef
- Inherits:
-
Object
- Object
- BSON::DBRef
- Defined in:
- lib/bson/types/dbref.rb
Overview
A reference to another object in a MongoDB database.
Instance Attribute Summary collapse
-
#namespace ⇒ Object
readonly
Returns the value of attribute namespace.
-
#object_id ⇒ Object
readonly
Returns the value of attribute object_id.
Instance Method Summary collapse
-
#initialize(namespace, object_id) ⇒ DBRef
constructor
Create a DBRef.
- #to_hash ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(namespace, object_id) ⇒ DBRef
Create a DBRef. Use this class in conjunction with DB#dereference.
32 33 34 35 |
# File 'lib/bson/types/dbref.rb', line 32 def initialize(namespace, object_id) @namespace = namespace @object_id = object_id end |
Instance Attribute Details
#namespace ⇒ Object (readonly)
Returns the value of attribute namespace.
24 25 26 |
# File 'lib/bson/types/dbref.rb', line 24 def namespace @namespace end |
#object_id ⇒ Object (readonly)
Returns the value of attribute object_id.
24 25 26 |
# File 'lib/bson/types/dbref.rb', line 24 def object_id @object_id end |
Instance Method Details
#to_hash ⇒ Object
41 42 43 |
# File 'lib/bson/types/dbref.rb', line 41 def to_hash {"$ns" => @namespace, "$id" => @object_id } end |
#to_s ⇒ Object
37 38 39 |
# File 'lib/bson/types/dbref.rb', line 37 def to_s "ns: #{namespace}, id: #{object_id}" end |