From 29677a6887da2416f48165680ef7dffcae76941f Mon Sep 17 00:00:00 2001 From: Shams Asari Date: Fri, 29 Jun 2018 09:01:20 +0100 Subject: [PATCH] ENT-2171: Removing outdated information in the serialisation docs (#1137) --- docs/source/serialization.rst | 5 ----- 1 file changed, 5 deletions(-) diff --git a/docs/source/serialization.rst b/docs/source/serialization.rst index 239d420d52..6c128a7ff8 100644 --- a/docs/source/serialization.rst +++ b/docs/source/serialization.rst @@ -69,9 +69,6 @@ It's reproduced here as an example of both ways you can do this for a couple of expression that will work with Corda is ``Runnable r = (Runnable & Serializable) () -> System.out.println("Hello World");``, or ``Callable c = (Callable & Serializable) () -> "Hello World";``. -.. warning:: We will be replacing the use of Kryo in the serialization framework and so additional changes here are - likely. - .. _amqp_ref: AMQP @@ -84,8 +81,6 @@ Corda serialisation is currently used for: #. Peer-to-peer networking. #. Persisted messages, like signed transactions and states. -.. note:: At present, the Kryo-based format is still used by the RPC framework on both the client and server side. However, it is planned that the RPC framework will move to the AMQP framework soon. - For the checkpointing of flows Corda uses a private scheme that is subject to change. It is currently based on the Kryo framework, but this may not be true in future.