npantarhei.distribution.pubnub.transceivers.PubnubHostTransceiver.Process_input_from_standIn C# (CSharp) Method

Process_input_from_standIn() private method

private Process_input_from_standIn ( object pubnubMsg ) : void
pubnubMsg object
return void
        void Process_input_from_standIn(object pubnubMsg)
        {
            Console.WriteLine("receive from standin @ {0}", Thread.CurrentThread.GetHashCode());
            var serializedInput = (string)((JValue)((ReadOnlyCollection<object>)pubnubMsg)[0]).Value;
            var standInInput = (HostInput)Convert.FromBase64String(serializedInput).Deserialize();
            ReceivedFromStandIn(standInInput);
        }