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,