This commit is contained in:
skidoodle 2024-03-13 00:33:46 +01:00
commit e124a47765
19374 changed files with 9806149 additions and 0 deletions

View file

@ -0,0 +1,34 @@
using System;
using Kreta.Core.MessageBroker;
using Kreta.Core.MessageBroker.Client.Implementations;
namespace Kreta.MessageBroker.ClientFactory
{
internal abstract class JsonMessageClientFactory<T> : IJsonMessageClientFactory<T>
where T : class
{
#region [Properties]
private IMessageClientFactory<string> NativeMessageClientFactory { get; }
#endregion
#region [Public methods]
public IMessageClient<T> Create(string name)
{
return new JsonMessageClient<T>(this.NativeMessageClientFactory.Create(name));
}
#endregion
#region [Constructors]
public JsonMessageClientFactory(IMessageClientFactory<string> nativeMessageClientFactory)
{
this.NativeMessageClientFactory = nativeMessageClientFactory ?? throw new ArgumentNullException(nameof(nativeMessageClientFactory));
}
#endregion
}
}