private void Process_Unsubscribe_Depth_Quotes_Res()
        {
            ProtoOAUnsubscribeDepthQuotesRes args = Serializer.Deserialize <ProtoOAUnsubscribeDepthQuotesRes>(_processorMemoryStream);

            Log.Info("ProtoOAUnsubscribeDepthQuotesRes:: " +
                     $"ctidTraderAccountId: {args.ctidTraderAccountId}");

            OnUnsubscribeDepthQuotesResReceived?.Invoke(args);
        }
Exemplo n.º 2
0
        private void OnUnsubscribeDepthQuotesResponse(ProtoOAUnsubscribeDepthQuotesRes e, string clientMsgId)
        {
            var streamMessage = new StreamMessage <ProtoOAUnsubscribeDepthQuotesRes>(e, clientMsgId);

            _unsubscribeDepthQuotesResponseStream.OnNext(streamMessage);
        }