コード例 #1
0
 public void Push()
 {
     if (Interlocked.CompareExchange(ref _isPush, 1, 0) == 0)
     {
         _fields["elapsed_microseconds"] = StopwatchUtils.GetElapsedMicroseconds(_currentTimestamp);
         _collector.Push(new Payload(new Point(_measurement, _fields, _tags, _utcTimestamp.HasValue ? _utcTimestamp : DateTime.UtcNow)));
     }
 }