NewVoidProcessor creates a new void push notification processor
()
| 117 | |
| 118 | // NewVoidProcessor creates a new void push notification processor |
| 119 | func NewVoidProcessor() *VoidProcessor { |
| 120 | return &VoidProcessor{} |
| 121 | } |
| 122 | |
| 123 | // GetHandler returns nil for void processor since it doesn't maintain handlers |
| 124 | func (v *VoidProcessor) GetHandler(_ string) NotificationHandler { |
no outgoing calls