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) logger.debug("{}{}{}", header, value, footer)
} }
} }
companion object { companion object {

View File

@ -22,7 +22,6 @@ class TimelineRelationshipFollowSubscriber(
domainEventSubscriber.subscribe<RelationshipEventBody>(RelationshipEvent.ACCEPT_FOLLOW.eventName, this) domainEventSubscriber.subscribe<RelationshipEventBody>(RelationshipEvent.ACCEPT_FOLLOW.eventName, this)
} }
override suspend fun invoke(p1: DomainEvent<RelationshipEventBody>) { override suspend fun invoke(p1: DomainEvent<RelationshipEventBody>) {
val relationship = p1.body.getRelationship() val relationship = p1.body.getRelationship()
val userDetail = userDetailRepository.findByActorId(relationship.actorId.id) 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 requestId: String? = MDC.get(ApplicationRequestLogInterceptor.requestId)
val springDomainEvent = SpringDomainEvent( val springDomainEvent = SpringDomainEvent(
requestId, domainEvent requestId,
domainEvent
) )
applicationEventPublisher.publishEvent(springDomainEvent) applicationEventPublisher.publishEvent(springDomainEvent)

View File

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