From 24bd11a3733c6c34f764093e1b29c658a3e79e42 Mon Sep 17 00:00:00 2001 From: Nikolai Sidorov Date: Mon, 17 Jul 2023 10:17:38 -0700 Subject: [PATCH] comments ;) --- src/Orleans.Serialization.MessagePack/MessagePackCodec.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Orleans.Serialization.MessagePack/MessagePackCodec.cs b/src/Orleans.Serialization.MessagePack/MessagePackCodec.cs index 64adaf2059a..7bfe464c232 100644 --- a/src/Orleans.Serialization.MessagePack/MessagePackCodec.cs +++ b/src/Orleans.Serialization.MessagePack/MessagePackCodec.cs @@ -19,6 +19,9 @@ namespace Orleans.Serialization; /// /// A serialization codec which uses . /// +/// +/// MessagePack codec performs slightly worse than default Orleans serializer, if performance is critical for your application, consider using default serialization. +/// [Alias(WellKnownAlias)] public class MessagePackCodec : IGeneralizedCodec, IGeneralizedCopier, ITypeFilter { @@ -38,8 +41,9 @@ public class MessagePackCodec : IGeneralizedCodec, IGeneralizedCopier, ITypeFilt /// /// Initializes a new instance of the class. /// + /// /// Filters used to indicate which types should be serialized by this codec. /// Filters used to indicate which types should be copied by this codec. - /// The JSON codec options. + /// The MessagePack codec options. public MessagePackCodec( IEnumerable serializableTypeSelectors, IEnumerable copyableTypeSelectors,