ChatterBox.Client.Common.Signaling.SignalingClient.SignalingClient C# (CSharp) Method

SignalingClient() public method

public SignalingClient ( ISignalingSocketService signalingSocketService, IForegroundChannel foregroundChannel, IVoipChannel voipChannel ) : ChatterBox.Client.Common.Avatars
signalingSocketService ISignalingSocketService
foregroundChannel IForegroundChannel
voipChannel IVoipChannel
return ChatterBox.Client.Common.Avatars
        public SignalingClient(ISignalingSocketService signalingSocketService,
            IForegroundChannel foregroundChannel,
            IVoipChannel voipChannel)
        {
            _signalingSocketService = signalingSocketService;
            _voipChannel = voipChannel;
            _foregroundChannel = foregroundChannel;
            ServerChannelInvoker = new ChannelInvoker(this);
        }