/// <summary>
 /// Get the Write client.
 /// </summary>
 /// <returns>the new client instance for the Write API</returns>
 public WriteApi GetWriteApi()
 {
     return(GetWriteApi(WriteOptions.CreateNew().Build()));
 }
Beispiel #2
0
 /// <summary>
 /// Get the Write client.
 /// </summary>
 /// <param name="mapper">the mapper used for mapping to PointData</param>
 /// <returns>the new client instance for the Write API</returns>
 public WriteApi GetWriteApi(IDomainObjectMapper mapper = null)
 {
     return(GetWriteApi(WriteOptions.CreateNew().Build(), mapper));
 }