mirror of https://github.com/dapr/dotnet-sdk.git
Keeping serialization providers for message body internal for first release.
This commit is contained in:
parent
a268182116
commit
cbd80bcc82
|
|
@ -15,7 +15,7 @@ namespace Microsoft.Actions.Actors.Communication
|
||||||
/// This is the implmentation for <see cref="IActorMessageBodySerializationProvider"/>used by remoting service and client during
|
/// This is the implmentation for <see cref="IActorMessageBodySerializationProvider"/>used by remoting service and client during
|
||||||
/// request/response serialization . It uses request Wrapping and data contract for serialization.
|
/// request/response serialization . It uses request Wrapping and data contract for serialization.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class ActorMessageBodyDataContractSerializationProvider : IActorMessageBodySerializationProvider
|
internal class ActorMessageBodyDataContractSerializationProvider : IActorMessageBodySerializationProvider
|
||||||
{
|
{
|
||||||
private static readonly IEnumerable<Type> DefaultKnownTypes = new[]
|
private static readonly IEnumerable<Type> DefaultKnownTypes = new[]
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ namespace Microsoft.Actions.Actors.Communication
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Defines the interface that must be implemented for providing custom serialization for the remoting request.
|
/// Defines the interface that must be implemented for providing custom serialization for the remoting request.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public interface IActorMessageBodySerializationProvider
|
internal interface IActorMessageBodySerializationProvider
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create a IServiceRemotingMessageBodyFactory used for creating remoting request and response body.
|
/// Create a IServiceRemotingMessageBodyFactory used for creating remoting request and response body.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue