You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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; }
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
The text was updated successfully, but these errors were encountered: