init
This commit is contained in:
commit
e124a47765
19374 changed files with 9806149 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue