Class SilverbackBuilderAddSequenceReaderExtensions
Adds the AddSequenceReader
methods to the ISilverback
Inherited Members
Namespace: Microsoft.Extensions.DependencyInjection
Assembly: Silverback.Integration.dll
Syntax
public static class SilverbackBuilderAddSequenceReaderExtensions
Methods
| Improve this doc View sourceAddSingletonSequenceReader(ISilverbackBuilder, ISequenceReader)
Adds a singleton sequence reader with an instance specified in
implementationInstance
to the IService
Declaration
public static ISilverbackBuilder AddSingletonSequenceReader(this ISilverbackBuilder silverbackBuilder, ISequenceReader implementationInstance)
Parameters
Type | Name | Description |
---|---|---|
ISilverback |
silverbackBuilder | The ISilverback |
ISequence |
implementationInstance | The instance of the service. |
Returns
Type | Description |
---|---|
ISilverback |
The ISilverback |
AddSingletonSequenceReader(ISilverbackBuilder, Func<IServiceProvider, ISequenceReader>)
Adds a singleton sequence reader with a factory specified in implementationFactory
to
the IService
Declaration
public static ISilverbackBuilder AddSingletonSequenceReader(this ISilverbackBuilder silverbackBuilder, Func<IServiceProvider, ISequenceReader> implementationFactory)
Parameters
Type | Name | Description |
---|---|---|
ISilverback |
silverbackBuilder | The ISilverback |
Func<IService |
implementationFactory | The factory that creates the service. |
Returns
Type | Description |
---|---|
ISilverback |
The ISilverback |
AddSingletonSequenceReader(ISilverbackBuilder, Type)
Adds a singleton sequence reader of the type specified in readerType
to the
IService
Declaration
public static ISilverbackBuilder AddSingletonSequenceReader(this ISilverbackBuilder silverbackBuilder, Type readerType)
Parameters
Type | Name | Description |
---|---|---|
ISilverback |
silverbackBuilder | The ISilverback |
Type | readerType | The type of the reader to register and the implementation to use. |
Returns
Type | Description |
---|---|
ISilverback |
The ISilverback |
AddSingletonSequenceReader<TReader>(ISilverbackBuilder)
Adds a singleton sequence reader of the type specified in TReader
to the
IService
Declaration
public static ISilverbackBuilder AddSingletonSequenceReader<TReader>(this ISilverbackBuilder silverbackBuilder) where TReader : class, ISequenceReader
Parameters
Type | Name | Description |
---|---|---|
ISilverback |
silverbackBuilder | The ISilverback |
Returns
Type | Description |
---|---|
ISilverback |
The ISilverback |
Type Parameters
Name | Description |
---|---|
TReader | The type of the reader to add. |
AddTransientSequenceReader(ISilverbackBuilder, Func<IServiceProvider, ISequenceReader>)
Adds a transient sequence reader with a factory specified in implementationFactory
to
the IService
Declaration
public static ISilverbackBuilder AddTransientSequenceReader(this ISilverbackBuilder silverbackBuilder, Func<IServiceProvider, ISequenceReader> implementationFactory)
Parameters
Type | Name | Description |
---|---|---|
ISilverback |
silverbackBuilder | The ISilverback |
Func<IService |
implementationFactory | The factory that creates the service. |
Returns
Type | Description |
---|---|
ISilverback |
The ISilverback |
AddTransientSequenceReader(ISilverbackBuilder, Type)
Adds a transient sequence reader of the type specified in readerType
to the
IService
Declaration
public static ISilverbackBuilder AddTransientSequenceReader(this ISilverbackBuilder silverbackBuilder, Type readerType)
Parameters
Type | Name | Description |
---|---|---|
ISilverback |
silverbackBuilder | The ISilverback |
Type | readerType | The type of the reader to register and the implementation to use. |
Returns
Type | Description |
---|---|
ISilverback |
The ISilverback |
AddTransientSequenceReader<TReader>(ISilverbackBuilder)
Adds a transient sequence reader of the type specified in TReader
to the
IService
Declaration
public static ISilverbackBuilder AddTransientSequenceReader<TReader>(this ISilverbackBuilder silverbackBuilder) where TReader : class, ISequenceReader
Parameters
Type | Name | Description |
---|---|---|
ISilverback |
silverbackBuilder | The ISilverback |
Returns
Type | Description |
---|---|
ISilverback |
The ISilverback |
Type Parameters
Name | Description |
---|---|
TReader | The type of the reader to add. |