pushNotificationHandlerContext creates a handler context for push notification processing
(cn *pool.Conn)
| 1774 | |
| 1775 | // pushNotificationHandlerContext creates a handler context for push notification processing |
| 1776 | func (c *baseClient) pushNotificationHandlerContext(cn *pool.Conn) push.NotificationHandlerContext { |
| 1777 | return push.NotificationHandlerContext{ |
| 1778 | Client: c, |
| 1779 | ConnPool: c.connPool, |
| 1780 | Conn: cn, // Wrap in adapter for easier interface access |
| 1781 | } |
| 1782 | } |
no outgoing calls
no test coverage detected