Class ConsumerOptions
Inheritance
System.Object
ConsumerOptions
Assembly: Steeltoe.Stream.StreamBase.dll
Syntax
public class ConsumerOptions : object, IConsumerOptions
Constructors
|
Edit this page
View Source
ConsumerOptions()
Declaration
|
Edit this page
View Source
ConsumerOptions(String)
Declaration
public ConsumerOptions(string bindingName)
Parameters
Type |
Name |
Description |
System.String |
bindingName |
|
Properties
|
Edit this page
View Source
AutoStartup
Declaration
public bool? AutoStartup { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Boolean> |
|
|
Edit this page
View Source
BackOffInitialInterval
Declaration
public int BackOffInitialInterval { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Edit this page
View Source
BackOffMaxInterval
Declaration
public int BackOffMaxInterval { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Edit this page
View Source
BackOffMultiplier
Declaration
public double BackOffMultiplier { get; set; }
Property Value
Type |
Description |
System.Double |
|
|
Edit this page
View Source
BindingName
Declaration
public string BindingName { get; set; }
Property Value
Type |
Description |
System.String |
|
|
Edit this page
View Source
Concurrency
Declaration
public int Concurrency { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Edit this page
View Source
DefaultRetryable
Declaration
public bool? DefaultRetryable { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Boolean> |
|
|
Edit this page
View Source
Declaration
public HeaderMode? HeaderMode { get; set; }
Property Value
|
Edit this page
View Source
InstanceCount
Declaration
public int InstanceCount { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Edit this page
View Source
InstanceIndex
Declaration
public int InstanceIndex { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Edit this page
View Source
InstanceIndexList
Declaration
public List<int> InstanceIndexList { get; set; }
Property Value
Type |
Description |
List<System.Int32> |
|
|
Edit this page
View Source
MaxAttempts
Declaration
public int MaxAttempts { get; set; }
Property Value
Type |
Description |
System.Int32 |
|
|
Edit this page
View Source
Multiplex
Declaration
public bool? Multiplex { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Boolean> |
|
|
Edit this page
View Source
Partitioned
Declaration
public bool? Partitioned { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Boolean> |
|
|
Edit this page
View Source
RetryableExceptions
Declaration
public List<string> RetryableExceptions { get; set; }
Property Value
Type |
Description |
List<System.String> |
|
|
Edit this page
View Source
UseNativeDecoding
Declaration
public bool? UseNativeDecoding { get; set; }
Property Value
Type |
Description |
System.Nullable<System.Boolean> |
|
Methods
|
Edit this page
View Source
Clone()
Declaration
public IConsumerOptions Clone()
Returns
Explicit Interface Implementations
|
Edit this page
View Source
IConsumerOptions.AutoStartup
Declaration
bool IConsumerOptions.AutoStartup { get; }
Returns
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
IConsumerOptions.DefaultRetryable
Declaration
bool IConsumerOptions.DefaultRetryable { get; }
Returns
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
Declaration
HeaderMode IConsumerOptions.HeaderMode { get; }
Returns
|
Edit this page
View Source
IConsumerOptions.IsPartitioned
Declaration
bool IConsumerOptions.IsPartitioned { get; }
Returns
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
IConsumerOptions.Multiplex
Declaration
bool IConsumerOptions.Multiplex { get; }
Returns
Type |
Description |
System.Boolean |
|
|
Edit this page
View Source
IConsumerOptions.UseNativeDecoding
Declaration
bool IConsumerOptions.UseNativeDecoding { get; }
Returns
Type |
Description |
System.Boolean |
|
Implements