There may be scenarios where it makes sense to connect to multiple space connections concurrently in a single session. One could have a connected space dedicated to persistent RTC connection for communication while using another connection for loading snapshots of a space, perhaps viewing various journaled configurations of a car prototype. This is achieved by using Tags, which are user-defined identifiers for a CavrnusSpaceConnection.
Tags
Tags allow for multiple concurrent space connections by assigning a unique identifier to each JoinSpaceWithOptions() call, using the SpaceConnectionConfig object to provide a Tag. This enables scenarios like maintaining a persistent RTC connection for communication while using another connection for tasks such as space transitions or syncing data.
When either no Tag is provided or the same Tag value is used for a JoinSpaceWithOptions() call, then only one connection remains active at a time, with new space joins replacing the current connection. By applying different tags, multiple connections can coexist, supporting advanced use cases that require simultaneous space connections.
JoinSpace() can also be used to provide a SpaceConnectionConfig, it is simply an optional parameter. If it’s not provided, the default empty string will be used as the tag.
Connecting to Multiple Spaces Example
By utilizing multiple JoinSpaceWithOptions() along with corresponding AwaitSpaceConnectionByTag() calls, multiple space connections will be created and independently handled allowing for multiple spaces to coexist simultaneously.
public void Start() { CavrnusFunctionLibrary.AwaitAuthentication(auth => { var configA = new CavrnusSpaceConnectionConfig {Tag = "A"}; CavrnusFunctionLibrary.JoinSpaceWithOptions("Space-A", configA, print, print); var configB = new CavrnusSpaceConnectionConfig {Tag = "B"}; CavrnusFunctionLibrary.JoinSpaceWithOptions("Space-B", configB, print, print); }); CavrnusFunctionLibrary.AwaitSpaceConnectionByTag("A", spaceConnection => { print("Space A is now connected!"); }); CavrnusFunctionLibrary.AwaitSpaceConnectionByTag("B", spaceConnection => { print("Space B is now connected!"); }); } }