Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Mutex ¶
func Mutex() error
Mutex は、 Tour of Go - sync.Mutex (https://tour.golang.org/concurrency/9) の サンプルです。
Types ¶
type Incrementer ¶
Incrementer -- 何かを加算する振る舞いを持ちます.
func NewNotSafeCounter ¶
func NewNotSafeCounter() Incrementer
NewNotSafeCounter -- 安全ではないカウンターを返します.
type NotSafeCounter ¶
type NotSafeCounter struct {
// contains filtered or unexported fields
}
NotSafeCounter -- 安全ではないカウンター
func (*NotSafeCounter) Increment ¶
func (c *NotSafeCounter) Increment(wg *sync.WaitGroup)
Increment -- 加算します.
type SafeCounter ¶
type SafeCounter struct {
// contains filtered or unexported fields
}
SafeCounter -- 安全なカウンター
func (*SafeCounter) Increment ¶
func (c *SafeCounter) Increment(wg *sync.WaitGroup)
Increment -- 加算します.
Click to show internal directories.
Click to hide internal directories.