DefaultProps 默认属性
(name string)
| 176 | |
| 177 | // DefaultProps 默认属性 |
| 178 | func DefaultProps(name string) *Props { |
| 179 | return &Props{ |
| 180 | Name: name, |
| 181 | MailboxSize: 100, |
| 182 | Dispatcher: DispatcherDefault, |
| 183 | SupervisorStrategy: nil, |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | // DispatcherType 调度器类型 |
| 188 | type DispatcherType int |