Class HostedServicesCollectionConfig<T>
Represents a thread-safe collection of configuration items for hosted services. This collection allows for the addition of configuration items and provides a method to fetch and remove items sequentially, supporting concurrent operations.
Implements
Inherited Members
Namespace: Coree.NETStandard.HostedServicesCollection
Assembly: Coree.NETStandard.dll
Syntax
public class HostedServicesCollectionConfig<T> : IHostedServicesCollectionConfig<T> where T : new()
Type Parameters
Name | Description |
---|---|
T | The type of the configuration items, which must have a parameterless constructor. |
Constructors
| Edit this page View SourceHostedServicesCollectionConfig()
Initializes a new instance of the HostedServicesCollectionConfig<T> class.
Declaration
public HostedServicesCollectionConfig()
Methods
| Edit this page View SourceEnqueue(T)
Adds a new configuration item to the end of the queue.
Declaration
public void Enqueue(T item)
Parameters
Type | Name | Description |
---|---|---|
T | item | The configuration item to be enqueued. |
FetchNextConfig()
Attempts to remove and return the configuration item at the beginning of the queue. If the queue is empty, a new instance of the configuration item type is returned.
Declaration
public T FetchNextConfig()
Returns
Type | Description |
---|---|
T | The next configuration item if available; otherwise, a new instance of the configuration item type. |