(db notifications.Store)
| 2280 | } |
| 2281 | |
| 2282 | func newAcquireSignalingInterceptor(db notifications.Store) *acquireSignalingInterceptor { |
| 2283 | return &acquireSignalingInterceptor{ |
| 2284 | Store: db, |
| 2285 | acquiredChan: make(chan struct{}, 1), |
| 2286 | } |
| 2287 | } |
| 2288 | |
| 2289 | func (n *acquireSignalingInterceptor) AcquireNotificationMessages(ctx context.Context, params database.AcquireNotificationMessagesParams) ([]database.AcquireNotificationMessagesRow, error) { |
| 2290 | messages, err := n.Store.AcquireNotificationMessages(ctx, params) |
no outgoing calls
no test coverage detected