26 lines
993 B
C#
26 lines
993 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace RudderSdk.Core;
|
|
|
|
/// <summary>Session of a scenario battle-pass-level node.</summary>
|
|
public sealed class BattlePassLevelSession
|
|
{
|
|
internal BattlePassLevelSession(ScenarioNodeContext context) => Context = context;
|
|
|
|
/// <summary>Underlying node context.</summary>
|
|
public ScenarioNodeContext Context { get; }
|
|
|
|
/// <summary>Node id.</summary>
|
|
public string Id => Context.NodeId;
|
|
|
|
/// <summary>Reads a typed value from the node data.</summary>
|
|
public T Get<T>(string key, T defaultValue = default!) => Context.Get(key, defaultValue);
|
|
|
|
/// <summary>Advances the run through the onComplete handle.</summary>
|
|
public Task CompleteAsync(CancellationToken cancellationToken = default) => Context.CompleteAsync("onComplete", cancellationToken);
|
|
|
|
/// <summary>Advances the run through the onComplete handle (fire-and-forget).</summary>
|
|
public void Complete() => Context.Complete("onComplete");
|
|
}
|