Beispiel #1
0
 private ValueTask <RedisResult> Execute(string participantId, string participantKey,
                                         string conferenceKeyTemplate)
 {
     return(_database.ExecuteScriptAsync(RedisScript.JoinedParticipantsRepository_RemoveParticipant,
                                         participantId, participantKey, conferenceKeyTemplate));
 }
 private ValueTask <RedisResult> Execute(string roomMappingKey, string roomListKey, string participantId,
                                         string newRoomId)
 {
     return(_database.ExecuteScriptAsync(RedisScript.RoomRepository_SetParticipantRoom, roomMappingKey,
                                         roomListKey, participantId, newRoomId));
 }