# File 'lib/noticed/coder.rb', line 10defself.dump(data)returnifdata.nil?ActiveJob::Arguments.send(:serialize_argument,data)end
.load(data) ⇒ Object
3
4
5
6
7
8
# File 'lib/noticed/coder.rb', line 3defself.load(data)returnifdata.nil?ActiveJob::Arguments.send(:deserialize_argument,data)rescueActiveRecord::RecordNotFound=>error{noticed_error:error.message,original_params:data}end