Skip to content

Commit

Permalink
emitter remove 함수 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
yaeoni committed Aug 23, 2024
1 parent f4196b9 commit 0daff68
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ class SSENotificationService : NotificationService {
emitters[memberId.value] = emitter
emitter.onCompletion {
logger.debug { "emitter($memberId) completed successfully" }
emitters.remove(memberId.value)
// emitters.remove(memberId.value)
}
emitter.onError {
logger.debug { "emitter error occurred: $it" }
emitters.remove(memberId.value)
// emitters.remove(memberId.value)
}
emitter.onTimeout {
logger.debug { "emitter($memberId) timed out" }
emitters.remove(memberId.value)
// emitters.remove(memberId.value)
}
}
}

0 comments on commit 0daff68

Please sign in to comment.