(ctx context.Context, p *ProgressNotificationParams)
| 1080 | } |
| 1081 | |
| 1082 | func (ss *ServerSession) callProgressNotificationHandler(ctx context.Context, p *ProgressNotificationParams) (Result, error) { |
| 1083 | if h := ss.server.opts.ProgressNotificationHandler; h != nil { |
| 1084 | h(ctx, serverRequestFor(ss, p)) |
| 1085 | } |
| 1086 | return nil, nil |
| 1087 | } |
| 1088 | |
| 1089 | // NotifyProgress sends a progress notification from the server to the client |
| 1090 | // associated with this session. |
nothing calls this directly
no test coverage detected