PlayerCancelMatchmaking cancels ongoing matchmaking for the authenticated player.
(ctx context.Context)
| 63 | |
| 64 | // PlayerCancelMatchmaking cancels ongoing matchmaking for the authenticated player. |
| 65 | func (p *PsyNetRPC) PlayerCancelMatchmaking(ctx context.Context) error { |
| 66 | var result interface{} |
| 67 | err := p.sendRequestSync(ctx, "Matchmaking/PlayerCancelMatchmaking v1", emptyRequest{}, &result) |
| 68 | if err != nil { |
| 69 | return err |
| 70 | } |
| 71 | return nil |
| 72 | } |
| 73 | |
| 74 | // PlayerSearchPrivateMatch searches for private matches. |
| 75 | func (p *PsyNetRPC) PlayerSearchPrivateMatch(ctx context.Context, region string, playlistID PlaylistID) error { |
no test coverage detected