style: fix lint

This commit is contained in:
usbharu 2024-09-13 13:55:06 +09:00
parent 1c80911365
commit 9ed85bae07
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
4 changed files with 4 additions and 10 deletions

View File

@ -38,7 +38,6 @@ class SubscriberRunner(
logger.debug("{}{}{}", header, value, footer)
}
}
companion object {

View File

@ -22,7 +22,6 @@ class TimelineRelationshipFollowSubscriber(
domainEventSubscriber.subscribe<RelationshipEventBody>(RelationshipEvent.ACCEPT_FOLLOW.eventName, this)
}
override suspend fun invoke(p1: DomainEvent<RelationshipEventBody>) {
val relationship = p1.body.getRelationship()
val userDetail = userDetailRepository.findByActorId(relationship.actorId.id)

View File

@ -32,7 +32,8 @@ class SpringFrameworkDomainEventPublisher(private val applicationEventPublisher:
val requestId: String? = MDC.get(ApplicationRequestLogInterceptor.requestId)
val springDomainEvent = SpringDomainEvent(
requestId, domainEvent
requestId,
domainEvent
)
applicationEventPublisher.publishEvent(springDomainEvent)
@ -43,4 +44,4 @@ class SpringFrameworkDomainEventPublisher(private val applicationEventPublisher:
}
}
data class SpringDomainEvent(val requestId: String?, val domainEvent: DomainEvent<*>)
data class SpringDomainEvent(val requestId: String?, val domainEvent: DomainEvent<*>)

View File

@ -22,13 +22,10 @@ class SpringFrameworkDomainEventSubscriber : DomainEventSubscriber {
map.getOrPut(eventName) { mutableListOf() }.add(domainEventConsumer as DomainEventConsumer<*>)
}
override fun getSubscribers(): Map<String, List<DomainEventConsumer<*>>> {
return map
}
override fun getSubscribers(): Map<String, List<DomainEventConsumer<*>>> = map
@EventListener
suspend fun onDomainEventPublished(domainEvent: SpringDomainEvent) {
logger.debug(
"Domain Event Published: {} id: {} requestId: {}",
domainEvent.domainEvent.name,
@ -36,7 +33,6 @@ class SpringFrameworkDomainEventSubscriber : DomainEventSubscriber {
domainEvent.requestId
)
coroutineScope {
map[domainEvent.domainEvent.name]?.map {
async(MDCContext()) {
try {
@ -50,7 +46,6 @@ class SpringFrameworkDomainEventSubscriber : DomainEventSubscriber {
}
}
}?.awaitAll()
}
}