Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Scope ¶
type Scope uint8
Scope specifies bean scope, default scope is ScopeSingleton.
const ( // ScopeSingleton is default Scope, with this setting there is a single // bean instance shared by all goroutines. ScopeSingleton Scope = iota // ScopeGLSSingleton is goroutine local storage singleton, with this setting // bean instance is shared by a goroutine tree, child goroutines // share bean instance with parent. ScopeGLSSingleton )
Click to show internal directories.
Click to hide internal directories.