AsyncPipeline Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AsyncPipeline() |
Constructs an empty AsyncPipeline with capacity equal to the DefaultCapacity. |
AsyncPipeline(Int32) |
Constructs an empty AsyncPipeline with a given capacity. |
AsyncPipeline()
- Source:
- AsyncPipeline.cs
Constructs an empty AsyncPipeline with capacity equal to the DefaultCapacity.
public AsyncPipeline ();
Public Sub New ()
Applies to
AsyncPipeline(Int32)
- Source:
- AsyncPipeline.cs
Constructs an empty AsyncPipeline with a given capacity.
public AsyncPipeline (int capacity);
new Orleans.Runtime.AsyncPipeline : int -> Orleans.Runtime.AsyncPipeline
Public Sub New (capacity As Integer)
Parameters
- capacity
- Int32
The maximal capacity of this AsyncPipeline.