/// <summary>
 ///     Sets the connection flow implementation to use when creating the underlying SpatialOS connection.
 /// </summary>
 /// <param name="flow">The connection flow implementation.</param>
 /// <returns>Itself</returns>
 public SpatialOSConnectionHandlerBuilder SetConnectionFlow(IConnectionFlow flow)
 {
     this.flow = flow;
     return(this);
 }