예제 #1
0
        private void Process_Get_Ctid_Profile_By_Token_Res()
        {
            ProtoOAGetCtidProfileByTokenRes args = Serializer.Deserialize <ProtoOAGetCtidProfileByTokenRes>(_processorMemoryStream);

            Log.Info("ProtoOAGetCtidProfileByTokenRes:: " +
                     $"Profile.userId: {args.Profile.userId}");

            OnGetCtidProfileByTokenResReceived?.Invoke(args);
        }
예제 #2
0
        private void OnCtidProfileResponse(ProtoOAGetCtidProfileByTokenRes e, string clientMsgId)
        {
            var streamMessage = new StreamMessage <ProtoOAGetCtidProfileByTokenRes>(e, clientMsgId);

            _ctidProfileResponseStream.OnNext(streamMessage);
        }