This commit is contained in:
aozhiwei 2024-04-09 13:31:35 +08:00
parent 4cf0746b3b
commit 540fca4015

View File

@ -547,6 +547,15 @@ func (this *guildMgr) AsyncKickout(accountId string, targetId string, cb func(in
cb(0, "")
return;
}
f5.NewLockAsyncTask(
[][]string{
{constant.GUILD_ID_LOCK_KEY, guild.guildId},
{constant.GUILD_NAME_LOCK_KEY, guild.guildName},
{constant.GUILD_MEMBER_LOCK_KEY, accountId},
{constant.GUILD_MEMBER_LOCK_KEY, targetId},
},
func (task *f5.LockAsyncTask) {
})
}
func (this *guildMgr) AsyncDisband(accountId string, cb func(int32, string, []string)) {