From 81ec512da89a2f3526b93c88999cb92aef3109a6 Mon Sep 17 00:00:00 2001 From: AL333Z Date: Thu, 26 Sep 2024 14:14:30 +0000 Subject: [PATCH] deploy: 5060017f1492ec9a9204df351417e9b01e16ecf9 --- getting-started/serialization/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/getting-started/serialization/index.html b/getting-started/serialization/index.html index fe3d9a0..46e6859 100644 --- a/getting-started/serialization/index.html +++ b/getting-started/serialization/index.html @@ -131,7 +131,7 @@

import com.commercetools.queue.Serializer implicit val serializer: Serializer[Int] = _.toString -// serializer: Serializer[Int] = repl.MdocSession$MdocApp$$anonfun$1@4cb59610 +// serializer: Serializer[Int] = repl.MdocSession$MdocApp$$anonfun$1@64c88d4d

The library provides natively a no-op serializer for Strings.

Data Deserializer

@@ -142,7 +142,7 @@

import com.commercetools.queue.Deserializer implicit val deserializer: Deserializer[Int] = s => Either.catchNonFatal(s.toInt) -// deserializer: Deserializer[Int] = repl.MdocSession$MdocApp$$anonfun$2@a56c83d +// deserializer: Deserializer[Int] = repl.MdocSession$MdocApp$$anonfun$2@431c734d

The library provides natively a no-op deserializer for Strings.

Library integration