Class: Jolt::ContactEvents
- Inherits:
-
Data
- Object
- Data
- Jolt::ContactEvents
- Defined in:
- lib/jolt/contact_events.rb
Instance Attribute Summary collapse
-
#added ⇒ Object
readonly
Returns the value of attribute added.
-
#dropped_count ⇒ Object
readonly
Returns the value of attribute dropped_count.
-
#persisted ⇒ Object
readonly
Returns the value of attribute persisted.
-
#removed ⇒ Object
readonly
Returns the value of attribute removed.
Class Method Summary collapse
Instance Attribute Details
#added ⇒ Object (readonly)
Returns the value of attribute added
14 15 16 |
# File 'lib/jolt/contact_events.rb', line 14 def added @added end |
#dropped_count ⇒ Object (readonly)
Returns the value of attribute dropped_count
14 15 16 |
# File 'lib/jolt/contact_events.rb', line 14 def dropped_count @dropped_count end |
#persisted ⇒ Object (readonly)
Returns the value of attribute persisted
14 15 16 |
# File 'lib/jolt/contact_events.rb', line 14 def persisted @persisted end |
#removed ⇒ Object (readonly)
Returns the value of attribute removed
14 15 16 |
# File 'lib/jolt/contact_events.rb', line 14 def removed @removed end |
Class Method Details
.empty ⇒ Object
15 16 17 |
# File 'lib/jolt/contact_events.rb', line 15 def self.empty new(added: [].freeze, persisted: [].freeze, removed: [].freeze, dropped_count: 0) end |