@@ -44,10 +44,11 @@ export class MatchCallbacks {
44
44
}
45
45
46
46
/** Handle client/match/group/exit_from_menu */
47
- public exitToMenu ( url : string , info : IEmptyRequestData , sessionID : string ) : INullResponseData {
47
+ public exitFromMenu ( url : string , info : IEmptyRequestData , sessionID : string ) : INullResponseData {
48
48
return this . httpResponse . nullResponse ( ) ;
49
49
}
50
50
51
+ /** Handle client/match/group/current */
51
52
public groupCurrent (
52
53
url : string ,
53
54
info : IEmptyRequestData ,
@@ -56,10 +57,12 @@ export class MatchCallbacks {
56
57
return this . httpResponse . getBody ( { squad : [ ] } ) ;
57
58
}
58
59
60
+ /** Handle client/match/group/looking/start */
59
61
public startGroupSearch ( url : string , info : IEmptyRequestData , sessionID : string ) : INullResponseData {
60
62
return this . httpResponse . nullResponse ( ) ;
61
63
}
62
64
65
+ /** Handle client/match/group/looking/stop */
63
66
public stopGroupSearch ( url : string , info : IEmptyRequestData , sessionID : string ) : INullResponseData {
64
67
return this . httpResponse . nullResponse ( ) ;
65
68
}
@@ -113,10 +116,12 @@ export class MatchCallbacks {
113
116
return this . httpResponse . getBody ( true ) ;
114
117
}
115
118
119
+ /** Handle client/putMetrics */
116
120
public putMetrics ( url : string , request : IPutMetricsRequestData , sessionId : string ) : INullResponseData {
117
121
return this . httpResponse . nullResponse ( ) ;
118
122
}
119
123
124
+ /** Handle client/analytics/event-disconnect */
120
125
public eventDisconnect ( url : string , request : IPutMetricsRequestData , sessionId : string ) : INullResponseData {
121
126
return this . httpResponse . nullResponse ( ) ;
122
127
}
0 commit comments