/// <summary> /// Copy the given event data to the event buffer. /// </summary> /// <remarks> /// The copying is thread-safe such the event may be overwritten concurrently by /// another thread in which case the write will fail and not add data to the buffer. /// This, however, relies on two invariants in order to work: overwriting has to /// overwrite the header of the event with another header /// ..... this won't be thread-safe; we may see partial writes /// /// Note that this is not thread-safe in the way that it would allow concurrent /// writes by multiple threads. /// </remarks> /// <param name="eventPtr"></param> public bool Write(InputEventPtr eventPtr) { throw new NotImplementedException(); }