Table of Contents

Class ReceiverDescriptor<TArg>

Namespace
Apache.Ignite.Table
Assembly
Apache.Ignite.dll

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
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 string

Name of the streamer receiver class to execute.

DeploymentUnits IEnumerable<DeploymentUnit>

Deployment units.

Options ReceiverExecutionOptions

Execution options.

Properties

DeploymentUnits

Deployment units.

public IEnumerable<DeploymentUnit>? DeploymentUnits { get; init; }

Property Value

IEnumerable<DeploymentUnit>

Options

Execution options.

public ReceiverExecutionOptions? Options { get; init; }

Property Value

ReceiverExecutionOptions

ReceiverClassName

Name of the streamer receiver class to execute.

public string ReceiverClassName { get; init; }

Property Value

string