Show / Hide Table of Contents

Interface IAsyncReactiveSubscriptionFactoryDefinition

Interface representing a subscription factory definition in a reactive processing service.

Inherited Members
IAsyncReactiveDefinedResource.IsParameterized
IAsyncReactiveDefinedResource.State
IAsyncReactiveDefinedResource.DefinitionTime
IKnownResource.Uri
IExpressible.Expression
Namespace: Reaqtor.Metadata
Assembly: Reaqtor.Metadata.Model.dll
Syntax
public interface IAsyncReactiveSubscriptionFactoryDefinition : IAsyncReactiveDefinedResource, IAsyncReactiveResource, IKnownResource, IExpressible

Methods

ToSubscriptionFactory()

Gets the subscription factory defined by the definition.

Declaration
IAsyncReactiveQubscriptionFactory ToSubscriptionFactory()
Returns
Type Description
IAsyncReactiveQubscriptionFactory

Representation of the subscription factory defined by the definition.

Remarks

This method can be used in isolation from the client library. It's allowed to return an object that encapsulates the definition using an expression tree, to be used for composition and delegation to other systems. The object does not have to provide data operations, as is expected from the client library proxy objects.

ToSubscriptionFactory<TArgs>()

Gets the parameterized subscription factory defined by the definition.

Declaration
IAsyncReactiveQubscriptionFactory<TArgs> ToSubscriptionFactory<TArgs>()
Returns
Type Description
IAsyncReactiveQubscriptionFactory<TArgs>

Representation of the parameterized subscription factory defined by the definition.

Type Parameters
Name Description
TArgs

Type of the parameter passed to the subscription factory.

Remarks

This method can be used in isolation from the client library. It's allowed to return an object that encapsulates the definition using an expression tree, to be used for composition and delegation to other systems. The object does not have to provide data operations, as is expected from the client library proxy objects.

In This Article
Back to top Generated by DocFX