instance method
build_entry
Ruby on Rails 7.1.6
Since v7.1.6Signature
build_entry(record)
No documentation comment.
Parameters
-
recordreq
Source
# File activerecord/lib/active_record/message_pack.rb, line 73
def build_entry(record)
[
ActiveSupport::MessagePack::Extensions.dump_class(record.class),
record.attributes_for_database,
record.new_record?
]
end
Defined in activerecord/lib/active_record/message_pack.rb line 73
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::MessagePack::Encoder