WaitGroup
Overview
Location
-
Reference:
- Go.dll .NET, .NET Standard 2.0
- Go.fx Island
- Namespace: go.sync
- Platforms: .NET, .NET Standard 2.0, Island
Instance Methods
constructor
constructor
WaitGroup()
init()
Sub New()
constructor (WaitGroup)
constructor(value: WaitGroup)
WaitGroup(WaitGroup value)
init(_ value: WaitGroup)
Sub New(value As WaitGroup)
Parameters:
- value:
Add
method Add(aDelta: Int32)
void Add(Int32 aDelta)
func Add(_ aDelta: Int32)
// .NET, .NET Standard 2.0
func Add(aDelta Int32)
// Island
func Add(aDelta Int32) void
Sub Add(aDelta As Int32)
Parameters:
- aDelta:
Done
method Done
void Done()
func Done()
// .NET, .NET Standard 2.0
func Done()
// Island
func Done() void
Sub Done()
Wait
method Wait
void Wait()
func Wait()
// .NET, .NET Standard 2.0
func Wait()
// Island
func Wait() void
Sub Wait()