All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.chestmc.common.service.ServiceRegistry.kt Maven / Gradle / Ivy

package net.chestmc.common.service

import net.chestmc.common.annotations.Service

/**
 * A service thats startups and shutdowns. This can be automatically perfomed
 * if you annotate a Service with [Service].
 */
interface ServiceRegistry {

  /**
   * Execution when this service starts.
   */
  fun startup()

  /**
   * Execution when this services stops.
   */
  fun shutdown()
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy