module Hat::Middlewares::Worker::JSON

Public Instance Methods

call(delivery_info, properties, payload) click to toggle source
# File lib/hat/middlewares/worker/json.rb, line 9
def call(delivery_info, properties, payload)
  payload = ::JSON.parse(payload)
  [delivery_info, properties, payload]
end