You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
702 B
43 lines
702 B
3 years ago
|
package group
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
type Counter struct {
|
||
|
Value int
|
||
|
}
|
||
|
|
||
|
func (c *Counter) Incr() {
|
||
|
c.Value++
|
||
|
}
|
||
|
|
||
|
func ExampleGroup_Get() {
|
||
|
group := NewGroup(func() interface{} {
|
||
|
fmt.Println("Only Once")
|
||
|
return &Counter{}
|
||
|
})
|
||
|
|
||
|
// Create a new Counter
|
||
|
group.Get("pass").(*Counter).Incr()
|
||
|
|
||
|
// Get the created Counter again.
|
||
|
group.Get("pass").(*Counter).Incr()
|
||
|
// Output:
|
||
|
// Only Once
|
||
|
}
|
||
|
|
||
|
func ExampleGroup_Reset() {
|
||
|
group := NewGroup(func() interface{} {
|
||
|
return &Counter{}
|
||
|
})
|
||
|
|
||
|
// Reset the new function and clear all created objects.
|
||
|
group.Reset(func() interface{} {
|
||
|
fmt.Println("reset")
|
||
|
return &Counter{}
|
||
|
})
|
||
|
|
||
|
// Create a new Counter
|
||
|
group.Get("pass").(*Counter).Incr()
|
||
|
// Output:reset
|
||
|
}
|