Interface IReactiveSubscriptionFactoryDefinition
Interface representing a subscription factory definition in a reactive processing service.
Inherited Members
Namespace: Reaqtor.Metadata
Assembly: Reaqtor.Metadata.Model.dll
Syntax
public interface IReactiveSubscriptionFactoryDefinition : IReactiveDefinedResource, IReactiveResource, IKnownResource, IExpressible
Methods
ToSubscriptionFactory()
Gets the subscription factory defined by the definition.
Declaration
IReactiveQubscriptionFactory ToSubscriptionFactory()
Returns
Type | Description |
---|---|
IReactiveQubscriptionFactory | 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
IReactiveQubscriptionFactory<TArgs> ToSubscriptionFactory<TArgs>()
Returns
Type | Description |
---|---|
IReactiveQubscriptionFactory<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.