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)); } }
public void HandleEvent(KafkaTopicEventData eventData) { PushQueue.Add(eventData); }