MCPcopy Create free account
hub / github.com/dank/rlapi / PlayerCancelMatchmaking

Method PlayerCancelMatchmaking

matchmaking.go:65–72  ·  view source on GitHub ↗

PlayerCancelMatchmaking cancels ongoing matchmaking for the authenticated player.

(ctx context.Context)

Source from the content-addressed store, hash-verified

63
64// PlayerCancelMatchmaking cancels ongoing matchmaking for the authenticated player.
65func (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.
75func (p *PsyNetRPC) PlayerSearchPrivateMatch(ctx context.Context, region string, playlistID PlaylistID) error {

Callers 1

allMatchmakingFunction · 0.80

Calls 1

sendRequestSyncMethod · 0.95

Tested by

no test coverage detected