本文整理匯總了Golang中github.com/Blackrush/gofus/realm/network/frontend.Client.CloseWith方法的典型用法代碼示例。如果您正苦於以下問題:Golang Client.CloseWith方法的具體用法?Golang Client.CloseWith怎麽用?Golang Client.CloseWith使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/Blackrush/gofus/realm/network/frontend.Client
的用法示例。
在下文中一共展示了Client.CloseWith方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: handle_client_player_selection
func handle_client_player_selection(ctx frontend.Service, client frontend.Client, m *msg.PlayerSelectionReq) {
player, ok := ctx.Players().GetById(m.PlayerId)
if !ok {
client.CloseWith(&msg.PlayerSelectionErrorResp{})
return
}
client.SetPlayer(player)
client.Send(&msg.PlayerSelectionResp{player})
}
示例2: handle_client_login
func handle_client_login(ctx frontend.Service, client frontend.Client, m *msg.RealmLoginReq) {
if infos, ok := ctx.Backend().GetUserInfos(m.Ticket); ok {
client.SetUserInfos(*infos)
ctx.Backend().NotifyUserConnection(infos.Id, true)
client.Send(&msg.RealmLoginSuccess{ctx.Config().CommunityId})
} else {
client.CloseWith(&msg.RealmLoginError{})
}
}