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
TArg
Argument 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
ReceiverClassName
stringName of the streamer receiver class to execute.
DeploymentUnits
IEnumerable<DeploymentUnit>Deployment units.
Options
ReceiverExecutionOptionsExecution 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; }