Class ReceiverDescriptor<TArg>
Stream receiver descriptor without results. If the specified receiver returns results, they will be discarded on the server.
public sealed record ReceiverDescriptor<TArg> : IEquatable<ReceiverDescriptor<TArg>>
Type Parameters
TArgArgument type.
- Inheritance
-
ReceiverDescriptor<TArg>
- Implements
-
IEquatable<ReceiverDescriptor<TArg>>
- Inherited Members
Constructors
ReceiverDescriptor(string, IEnumerable<DeploymentUnit>?, ReceiverExecutionOptions?)
Stream receiver descriptor without results. If the specified receiver returns results, they will be discarded on the server.
public ReceiverDescriptor(string ReceiverClassName, IEnumerable<DeploymentUnit>? DeploymentUnits = null, ReceiverExecutionOptions? Options = null)
Parameters
ReceiverClassNamestringName of the streamer receiver class to execute.
DeploymentUnitsIEnumerable<DeploymentUnit>Deployment units.
OptionsReceiverExecutionOptionsExecution options.
Properties
DeploymentUnits
Deployment units.
public IEnumerable<DeploymentUnit>? DeploymentUnits { get; init; }
Property Value
Options
Execution options.
public ReceiverExecutionOptions? Options { get; init; }
Property Value
ReceiverClassName
Name of the streamer receiver class to execute.
public string ReceiverClassName { get; init; }