🔀 Merge branch 'release/v82'
[Sone.git] / src / main / kotlin / net / pterodactylus / sone / main / TickerShutdown.kt
index 71764ec..de15cbe 100644 (file)
@@ -1,5 +1,5 @@
 /**
- * Sone - TickerShutdown.kt - Copyright Â© 2019 David â€˜Bombe’ Roden
+ * Sone - TickerShutdown.kt - Copyright Â© 2019–2020 David â€˜Bombe’ Roden
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -20,15 +20,16 @@ package net.pterodactylus.sone.main
 import com.google.common.eventbus.*
 import net.pterodactylus.sone.core.event.*
 import java.util.concurrent.*
+import javax.inject.*
 
 /**
  * Wrapper around all [tickers][ScheduledExecutorService] used in Sone,
  * ensuring proper shutdown.
  */
-class TickerShutdown(private val notificationTicker: ScheduledExecutorService) {
+class TickerShutdown @Inject constructor(@Named("notification") private val notificationTicker: ScheduledExecutorService) {
 
        @Subscribe
-       fun shutdown(shutdown: Shutdown) {
+       fun shutdown(@Suppress("UNUSED_PARAMETER") shutdown: Shutdown) {
                notificationTicker.shutdown()
        }