Esempio n. 1
0
 public OneEventStream(UnixTime time, string record)
 {
     eventRecord = new EventRecord(time, record);
 }
Esempio n. 2
0
 public void Emit(string tag, UnixTime time, string jsonRecord)
 {
     throw new NotImplementedException();
 }
Esempio n. 3
0
 public EventRecord(UnixTime time, string jsonRecord)
 {
     Time = time;
     Record = jsonRecord;
 }
 public void Add(UnixTime time, string jsonRecord)
 {
     Add(new EventRecord(time, jsonRecord));
 }