Skip to content

Commit

Permalink
comments ;)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolai Sidorov committed Jul 17, 2023
1 parent d48ef2a commit 24bd11a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/Orleans.Serialization.MessagePack/MessagePackCodec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ namespace Orleans.Serialization;
/// <summary>
/// A serialization codec which uses <see cref="MessagePackSerializer"/>.
/// </summary>
/// <remarks>
/// MessagePack codec performs slightly worse than default Orleans serializer, if performance is critical for your application, consider using default serialization.
/// </remarks>
[Alias(WellKnownAlias)]
public class MessagePackCodec : IGeneralizedCodec, IGeneralizedCopier, ITypeFilter
{
Expand All @@ -38,8 +41,9 @@ public class MessagePackCodec : IGeneralizedCodec, IGeneralizedCopier, ITypeFilt
/// <summary>
/// Initializes a new instance of the <see cref="MessagePackCodec"/> class.
/// </summary>
/// /// <param name="serializableTypeSelectors">Filters used to indicate which types should be serialized by this codec.</param>
/// <param name="copyableTypeSelectors">Filters used to indicate which types should be copied by this codec.</param>
/// <param name="options">The JSON codec options.</param>
/// <param name="options">The MessagePack codec options.</param>
public MessagePackCodec(
IEnumerable<ICodecSelector> serializableTypeSelectors,
IEnumerable<ICopierSelector> copyableTypeSelectors,
Expand Down

0 comments on commit 24bd11a

Please sign in to comment.