Skip to Content Skip to Search

module ActiveSupport::Messages::SerializerWithFallback::MessagePackWithFallback

Inherits From

Public instance methods

_load(dumped)

Permalink
Source code GitHub
# File activesupport/lib/active_support/messages/serializer_with_fallback.rb, line 125
def _load(dumped)
  ActiveSupport::MessagePack.load(dumped)
end

dump(object)

Permalink
Source code GitHub
# File activesupport/lib/active_support/messages/serializer_with_fallback.rb, line 121
def dump(object)
  ActiveSupport::MessagePack.dump(object)
end

dumped?(dumped)

Permalink
Source code GitHub
# File activesupport/lib/active_support/messages/serializer_with_fallback.rb, line 129
def dumped?(dumped)
  available? && ActiveSupport::MessagePack.signature?(dumped)
end

format()

Permalink
Source code GitHub
# File activesupport/lib/active_support/messages/serializer_with_fallback.rb, line 117
def format
  :message_pack
end

Definition files