IRealtimeClient has a property "Channels" of type "RealtimeChannels" which is not an interface and has no public constructor. However, this class implements IChannels<IRealtimeChannel>. This implies that in IRealtimeClient.cs, the RealtimeChannels type should instead be IChannels<IRealtimeChannel>.
instead of this:
/// <summary>The collection of channels instanced, indexed by channel name.</summary>
RealtimeChannels Channels { get; }
it should be this:
/// <summary>The collection of channels instanced, indexed by channel name.</summary>
IChannels<IRealtimeChannel> Channels { get; }
┆Issue is synchronized with this Jira Task by Unito
IRealtimeClient has a property "Channels" of type "RealtimeChannels" which is not an interface and has no public constructor. However, this class implements
IChannels<IRealtimeChannel>. This implies that in IRealtimeClient.cs, the RealtimeChannels type should instead beIChannels<IRealtimeChannel>.instead of this:
it should be this:
┆Issue is synchronized with this Jira Task by Unito