Example #1
0
            private void ILPush(QuadTuple qt)
            {
                var tplt = ",{0}";

                if (PushQueue is null)
                {
                    PushQueue = new List <string>();
                }
                if (qt.LValue.ValueType == "string")
                {
                    PushQueue.Add(string.Format(tplt, "offset " + qt.LValue.ID));
                }
                else
                {
                    PushQueue.Add(string.Format(tplt, qt.LValue.ID));
                }
            }
Example #2
0
 public void HandleEvent(KafkaTopicEventData eventData)
 {
     PushQueue.Add(eventData);
 }