(opts *pubOpts)
| 1258 | type AckWait time.Duration |
| 1259 | |
| 1260 | func (ttl AckWait) configurePublish(opts *pubOpts) error { |
| 1261 | opts.ttl = time.Duration(ttl) |
| 1262 | return nil |
| 1263 | } |
| 1264 | |
| 1265 | func (ttl AckWait) configureSubscribe(opts *subOpts) error { |
| 1266 | opts.cfg.AckWait = time.Duration(ttl) |