方法
包含模块
实例公开方法
_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