(config QueueConfig)
| 103 | } |
| 104 | |
| 105 | func WithQueueConfig(config QueueConfig) ServerOption { |
| 106 | return serverOptionFunc(func(o *serverOptions) (*serverOptions, error) { |
| 107 | o.queueConfig = config |
| 108 | return o, nil |
| 109 | }) |
| 110 | } |
| 111 | |
| 112 | func WithTubeFactoryBuilder( |
| 113 | name string, |
nothing calls this directly
no test coverage detected