Interface IParallelSequenceCollection<TSequenceable>
This is meant to be used to run multiple ISequenceable objects in parallel.
Inherited Members
Namespace: IdleKit.Core
Assembly: cs.temp.dll.dll
Syntax
public interface IParallelSequenceCollection<TSequenceable> : ISequenceable, IProgressCompletable, IProgressable, ICompletable, IInjectable where TSequenceable : class, ISequenceable
Type Parameters
Name | Description |
---|---|
TSequenceable | The type of ISequenceable objects to run in parallel. |
Properties
Sequenceables
The collection of ISequenceable objects to run.
Declaration
List<TSequenceable> Sequenceables { get; }
Property Value
Type | Description |
---|---|
List<TSequenceable> |
Methods
AddSequenceables(TSequenceable[])
Adds ISequenceable objects to the collection.
Declaration
void AddSequenceables(params TSequenceable[] sequenceables)
Parameters
Type | Name | Description |
---|---|---|
TSequenceable[] | sequenceables |