Sessions: Consumers¶
This page mirrors the Consumers section from Sessions.
CreateConsumer¶
Source file, signature, and docstring
Member
SessionBuilder.CreateConsumer(ConsumerBuilder consumerBuilder)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Creates or adds the configured consumer 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.
ReadConsumers¶
Source file, signature, and docstring
Member
SessionBuilder.ReadConsumers()
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Returns the configured consumers 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.
ReadConsumer¶
Source file, signature, and docstring
Member
SessionBuilder.ReadConsumer(string name)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Returns the configured consumer 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.
UpdateConsumer¶
Source file, signature, and docstring
Member
SessionBuilder.UpdateConsumer(string name, ConsumerBuilder consumerBuilder)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Updates the configured consumer 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.
UpdateConsumer¶
Source file, signature, and docstring
Member
SessionBuilder.UpdateConsumer(string name, Func<ConsumerBuilder, ConsumerBuilder> update)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Updates the configured consumer 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.
DeleteConsumer¶
Source file, signature, and docstring
Member
SessionBuilder.DeleteConsumer(string name)
Kind function
Declaring Type SessionBuilder
Source File QaaS.Runner.Sessions/Session/Builders/SessionBuilderLogic.cs
Signature
Docstring
Removes the configured consumer 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.