Sessions: Collectors¶
This page mirrors the Collectors section from Sessions.
CreateCollector¶
Source file, signature, and docstring
Member
SessionBuilder.CreateCollector(CollectorBuilder collectorBuilder)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Creates or adds the configured collector entry on the current Runner session builder instance.
Use this method when working with the documented Runner session builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
ReadCollectors¶
Source file, signature, and docstring
Member
SessionBuilder.ReadCollectors()
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Returns the configured collectors currently stored on the Runner session builder instance.
Use this method when working with the documented Runner session builder API surface in code. Use it to inspect the current configured state without rebuilding the surrounding collection or runtime object graph.
ReadCollector¶
Source file, signature, and docstring
Member
SessionBuilder.ReadCollector(string name)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Returns the configured collector currently stored on the Runner session builder instance.
Use this method when working with the documented Runner session builder API surface in code. Use it to inspect the current configured state without rebuilding the surrounding collection or runtime object graph.
UpdateCollector¶
Source file, signature, and docstring
Member
SessionBuilder.UpdateCollector(string name, CollectorBuilder collectorBuilder)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Updates the configured collector stored on the current Runner session builder instance.
Use this method when working with the documented Runner session builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
UpdateCollector¶
Source file, signature, and docstring
Member
SessionBuilder.UpdateCollector(string name, Func<CollectorBuilder, CollectorBuilder> update)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Updates the configured collector stored on the current Runner session builder instance.
Use this method when working with the documented Runner session builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.
DeleteCollector¶
Source file, signature, and docstring
Member
SessionBuilder.DeleteCollector(string name)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Removes the configured collector from the current Runner session builder instance.
Use this method when working with the documented Runner session builder API surface in code. The change is stored on the current builder instance and is consumed by later build, validation, or execution steps.