NewPushNotificationProcessor creates a new push notification processor This processor maintains a registry of handlers and processes push notifications It is used for RESP3 connections where push notifications are available
()
| 8 | // This processor maintains a registry of handlers and processes push notifications |
| 9 | // It is used for RESP3 connections where push notifications are available |
| 10 | func NewPushNotificationProcessor() push.NotificationProcessor { |
| 11 | return push.NewProcessor() |
| 12 | } |
| 13 | |
| 14 | // NewVoidPushNotificationProcessor creates a new void push notification processor |
| 15 | // This processor does not maintain any handlers and always returns nil for all operations |
no test coverage detected