blob: 0ed3a50e155c8ad9a2e551d84cc441d39f705001 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
package amqp
import (
"fmt"
"github.com/spiral/roadrunner/service"
"time"
)
// Config defines sqs broker configuration.
type Config struct {
// Addr of AMQP server (example: amqp://guest:guest@localhost:5672/).
Addr string
// Timeout to allocate the connection. Default 10 seconds.
Timeout int
}
// Hydrate config values.
func (c *Config) Hydrate(cfg service.Config) error {
if err := cfg.Unmarshal(c); err != nil {
return err
}
if c.Addr == "" {
return fmt.Errorf("AMQP address is missing")
}
return nil
}
// TimeoutDuration returns number of seconds allowed to redial
func (c *Config) TimeoutDuration() time.Duration {
timeout := c.Timeout
if timeout == 0 {
timeout = 10
}
return time.Duration(timeout) * time.Second
}
|