方法
包含的模組
執行個體公開方法
_load(dumped) 連結
原始碼: 顯示 | 在 GitHub 上
# File activesupport/lib/active_support/messages/serializer_with_fallback.rb, line 125 def _load(dumped) ActiveSupport::MessagePack.load(dumped) end
dump(object) 連結
原始碼: 顯示 | 在 GitHub 上
# File activesupport/lib/active_support/messages/serializer_with_fallback.rb, line 121 def dump(object) ActiveSupport::MessagePack.dump(object) end
dumped?(dumped) 連結
原始碼: 顯示 | 在 GitHub 上
# File activesupport/lib/active_support/messages/serializer_with_fallback.rb, line 129 def dumped?(dumped) available? && ActiveSupport::MessagePack.signature?(dumped) end
format() 連結
原始碼: 顯示 | 在 GitHub 上
# File activesupport/lib/active_support/messages/serializer_with_fallback.rb, line 117 def format :message_pack end